vote up 6 vote down star
1

I have read the answers for this question but I'm wondering if there is a better way to do this using standard c++ libs? Preferably without trying to open the file at all.

Edit: Thanks for the answers so far, but I'm still stuck... Both "stat" and "access" is pretty much ungoogleable. What should I #include to use these?

flag

<io.h> for access (which might actually be _access). – Rob Nov 6 '08 at 10:10
funny, googleing for "man stat" and "man access" yield great results. – Evan Teran Nov 6 '08 at 12:13
Yes, as therefromhere pointed out. – c0m4 Nov 6 '08 at 12:50

7 Answers

vote up 12 vote down check

Use boost::filesystem:

if ( !boost::filesystem::exists( "myfile.txt" ) )
{
  std::cout << "Can't find my file!" << std::endl;
}
link|flag
Seems to be a bit of a hazzle to install a huge third party library to do something that should be simple – c0m4 Nov 6 '08 at 9:36
Boost is a library where much of what will eventually be a part of C++ standard library is developed. Many of the people involved with boost are people involved with the C++ standard. So boost isn't just any third party library. If you're programming in C++ you should have boost installed! – Andreas Magnusson Nov 6 '08 at 9:48
@Andreas Magnusson; I would vote you up for this comment!! FULL ACK! – Peter Parker Nov 6 '08 at 10:10
Thanks, I love boost too! – Andreas Magnusson Nov 6 '08 at 10:18
I seem to recall that b::fs::exists returns "true" on non-existent files on network shares: "\\machine\share\this_file_doesnt_exist" => true. Last time I checked was on boost 1.33, use caution... – rlerallut Nov 6 '08 at 12:54
show 3 more comments
vote up 2 vote down

Be careful of race conditions: if the file disappears between the "exists" check and the time you open it, your program will fail unexpectedly.

It's better to go and open the file, check for failure and if all is good then do something with the file. It's even more important with security-critical code.

Details about security and race conditions: http://www.ibm.com/developerworks/library/l-sprace.html

link|flag
vote up 2 vote down

I am a happy boost user and would certainly use Andreas' solution. But if you didn't have access to the boost libs you can use the stream library:

ifstream file(argv[1]);
if (!file)
{
    // Can't open file
}

It's not quite as nice as boost::filesystem::exists since the file will actually be opened...but then that's usually the next thing you want to do anyway.

link|flag
vote up 3 vote down

I would reconsider trying to find out if a file exists. Instead, you should try to open it (in Standard C or C++) in the same mode you intend to use it. What use is knowing that the file exists if, say, it isn't writable when you need to use it?

link|flag
vote up 1 vote down

To help with your problems googling, try adding "man page" to the search - if you're on Linux, the "man" command is your friend.

link|flag
Great tip thanks! – c0m4 Nov 6 '08 at 10:20
Haven't you noticed? This site is for people who don't have Google. – fizzer Nov 6 '08 at 15:40
This site is for people fed up with Google bringing back wrong or stupid answers. – Neil May 14 at 19:35
vote up 1 vote down

How about access?

#include <io.h>

if (_access(filename, 0) == -1)
{
    // File does not exist
}
link|flag
Is io.h normaly available on windows and linux even if its not standard? – c0m4 Nov 6 '08 at 10:30
access() is POSIX function that is available via <unistd.h> on Linux. – Checkers Nov 6 '08 at 13:26
vote up 4 vote down

Use stat(), if it is cross-platform enough for your needs. It is not C++ standard though, but POSIX.

On MS Windows there is _stat, _stat64, _stati64, _wstat, _wstat64, _wstati64.

link|flag
Ok, what do I #include? – c0m4 Nov 6 '08 at 9:28
<sys/types.h> and <sys/stat.h> See msdn.microsoft.com/en-us/library/… – divideandconquer.se Nov 18 '08 at 10:35

Your Answer

Get an OpenID
or

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