How can i check if a file exists using lua?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Try
but note that this code only tests whether the file can be opened for reading. |
|||||
|
|
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 |
|||
|
|
Looks good for testing your way. :) |
|||||
|