How can we check if a file Exists or not using a Win32 program? I am working for a Windows Mobile App.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can call FindFirstFile Here is a sample I just knocked up:
|
|||||||||||||
|
|
Use GetFileAttributes to check that the file system object exists and that it is not a directory.
Related |
|||||||||||
|
|
You can make use of the function |
|||||||||
|
|
Another option: 'PathFileExists'. But I'd probably go with |
|||
|