9 lines
150 B
Lua
9 lines
150 B
Lua
|
local F = {}
|
||
|
|
||
|
function F.file_exists(name)
|
||
|
local f=io.open(name,"r")
|
||
|
if f~=nil then io.close(f) return true else return false end
|
||
|
end
|
||
|
|
||
|
return F
|