Using the Windows API (Win32), what is the safest and most efficient way to test whether a file exists?
|
|
According to the venerable Raymond Chen, you should use GetFileAttributes if you're superstitious. |
||||||||||
|
|
|
I use the FindFirstFile / FindNextFile API functions for this purpose. |
||
|
|
|
|
Use |
||||
|
|
|
This is a bit more of a complex question. There is no 100% way to check for existence of a file. All you can check is really "exstistence of a file that I have some measure of access to." With a non-super user account, it's very possible for a file to exist that you have no access to in such a way that access checks will not reveal the existincae of an file. For instance. It's possible to not have access to a particular directory. There is no way then to determine the existence of a file within that directory. That being said, if you want to check for the existence of a file you have a measure of access to use one of the following: _stat, _stat64, _stati64, _wstat, _wstat64, _wstati64 |
||
|
|
|
|
GetFileAttributes is what you're looking for. If it returns a value that is not INVALID_FILE_ATTRIBUTES the file exists. |
||
|
|
|
|
I usually use boost::filesystem. Has an exists() function. :) |
||
|
|
|
|
See news://comp.os.ms-windows.programmer.win32 where the official method has been given (by Windows programmers themselves... (used by Explorer team)) |
||
|
|
|
|
In my experience, _access() is simple and fairly portable
|
||
|
|
