16 lines
249 B
Lua
16 lines
249 B
Lua
local Filesystem = {}
|
|
|
|
function Filesystem.exists(filepath)
|
|
local info = love.filesystem.getInfo( filepath )
|
|
local exists = false
|
|
|
|
if (info == nil) then
|
|
exists = false
|
|
else
|
|
exists = true
|
|
end
|
|
|
|
return exists
|
|
end
|
|
|
|
return Filesystem
|