Difference between revisions of "love.filedropped"

m (It is DroppedFile)
(Function)
Line 10: Line 10:
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.
 +
== Examples ==
 +
Read and print the file, drag-and-dropped to love window.
 +
<source lang="lua">
 +
function love.filedropped(file)
 +
    local data = file:read()
 +
    print(data)
 +
end
 +
</source>
 +
 
== Notes ==
 
== Notes ==
 
[[(File):open|File:open]] must be called on the file before reading from or writing to it. [[(File):getFilename|File:getFilename]] will return the full platform-dependent path to the file.
 
[[(File):open|File:open]] must be called on the file before reading from or writing to it. [[(File):getFilename|File:getFilename]] will return the full platform-dependent path to the file.

Revision as of 23:59, 14 February 2019

Available since LÖVE 0.10.0
This function is not supported in earlier versions.

Callback function triggered when a file is dragged and dropped onto the window.

Function

Synopsis

love.filedropped( file )

Arguments

DroppedFile file
The unopened File object representing the file that was dropped.

Returns

Nothing.

Examples

Read and print the file, drag-and-dropped to love window.

function love.filedropped(file)
    local data = file:read()
    print(data)
end

Notes

File:open must be called on the file before reading from or writing to it. File:getFilename will return the full platform-dependent path to the file.

See Also


Other Languages