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.
love.filedropped( file )
DroppedFile file
Nothing.
Read and print the file, drag-and-dropped to love window using (File):read and (File):getFilename.
function love.filedropped(file) file:open("r") local data = file:read() print("Content of " .. file:getFilename() .. ' is') print(data) print("End of file") end
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.