vote up 6 vote down star
1

Using the Windows API (Win32), what is the safest and most efficient way to test whether a file exists?

flag

8 Answers

vote up 11 vote down check

According to the venerable Raymond Chen, you should use GetFileAttributes if you're superstitious.

link|flag
1  
interestingly, it looks like _access() is actually just a wrapper around GetFileAttributes() too – Jay Nov 27 '08 at 7:03
+1 for 'venerable Raymond Chen'... and for good answer – Serge Nov 27 '08 at 8:00
@Jay: That's right, since the whole C library is basically implemented in the Windows API. – efotinis Nov 27 '08 at 11:56
The only difference between superstition and best practices is if you remember why you do it – dlanod Oct 27 at 23:16
vote up 1 vote down

I use the FindFirstFile / FindNextFile API functions for this purpose.

link|flag
vote up 7 vote down

http://stackoverflow.com/questions/268023/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform

Use _access or stat.

link|flag
Hey that's cool! I didn't realize you could use those functions on Windows. – Kurt Nov 26 '08 at 20:45
They form part of the C runtime (CRT). Visual Studio lets you link to this statically (.lib) or dynamically (in which case a DLL would need to be shipped with your app). I can't think of a reason not to statically link. – Rob Nov 26 '08 at 21:26
vote up 6 vote down

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

link|flag
vote up 6 vote down

GetFileAttributes is what you're looking for. If it returns a value that is not INVALID_FILE_ATTRIBUTES the file exists.

link|flag
vote up 0 vote down

I usually use boost::filesystem. Has an exists() function. :)

link|flag
vote up 0 vote down

See news://comp.os.ms-windows.programmer.win32 where the official method has been given (by Windows programmers themselves... (used by Explorer team))

link|flag
vote up 0 vote down

In my experience, _access() is simple and fairly portable

#if defined(__MSDOS__) || defined(_Windows) || defined(_WIN32)
    bool file_exists =  _access(file_name,0) == 0;
#endif
#ifdef unix
    bool file_exists =  _access(file_name,F_OK) == 0;
#endif
link|flag

Your Answer

Get an OpenID
or

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