simplex2/fs.moon

11 lines
134 B
Plaintext
Raw Normal View History

exists = (file_path) ->
handle = io.open file_path, "r"
if handle
handle\close!
return true
return false
{
:exists
}