Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i check if a file exists using lua?

share|improve this question
surely a duplicate? – Mitch Wheat Feb 14 '11 at 10:18
@Mitch as in stackoverflow.com/questions/1340230/… ? – tonio Feb 14 '11 at 10:24
1  
@tonio - I guess more as in lua.org/pil/21.2.html – Liutauras Feb 14 '11 at 10:27
@Liutauras that is even close to a real answer. I only did a quick check only on so – tonio Feb 14 '11 at 10:45
Hi, Thx for the quick respond. I am doing: assert(io.input(fileName), "Error opening file") But when i give a dummy filename, i don't get the error message : "Error opening file". The message i get is: "bad argument #1 to 'input' (/pfrm2.0/share/lua/5.1/db/fake.dbdl: No such file or directory)" any thoughts ? – Yoni Feb 14 '11 at 13:21
show 5 more comments

3 Answers

Try

function file_exists(name)
   local f=io.open(name,"r")
   if f~=nil then io.close(f) return true else return false end
end

but note that this code only tests whether the file can be opened for reading.

share|improve this answer
3  
no better source for an answer than the man himself. – sylvanaar Feb 14 '11 at 11:32

Using plain Lua, the best you can do is see if a file can be opened for read, as per LHF. This is almost always good enough. But if you want more, load the Lua POSIX library and check if posix.stat(path) returns non-nil.

share|improve this answer
IsFile = function(path)
print(io.open(path or '','r')~=nil and 'File exists' or 'No file exists on this path: '..(path=='' and 'empty path entered!' or (path or 'arg "path" wasn\'t define to function call!')))
end

IsFile()
IsFile('')
IsFIle('C:/Users/testuser/testfile.txt')

Looks good for testing your way. :)

share|improve this answer
5  
This code leaks file handes. – lhf Feb 14 '11 at 12:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.