Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to see if a file exists. If it does not exists, then I would like to create it. I am using Linux by the way.

share|improve this question
This thread might help: stackoverflow.com/questions/230062/…. If you want a more cross-platform way, you can use Boost Filesystem: boost.org/doc/libs/1_47_0/libs/filesystem/v3/doc/tutorial.html (look for the exists function). – birryree Oct 22 '11 at 22:56

1 Answer

up vote 15 down vote accepted

You can't do that reliably. Between when you check to see if the file exists and when you create it, another process may create it.

You should just go ahead and create the file. Depending on the larger thing you're trying to do, you might want one of these options for what to do if the file already exists:

  • modify the previous contents in place: open("file", O_RDWR|O_CREAT, 0666)
  • erase the previous contents: open("file", O_WRONLY|O_CREAT|O_TRUNC, 0666)
  • append to the previous contents: open("file", O_WRONLY|O_CREAT|O_APPEND, 0666)
  • fail the operation: open("file", O_WRONLY|O_CREAT|O_EXCL, 0666)

Most of these, but unfortunately not all, have equivalents at the higher level iostream interface. There may also be a way to wrap an iostream around the file descriptor you get from open, depending on which C++ library you have.

Also, I should mention that if you want to atomically replace the contents of a file (so no process ever sees an incomplete file) the only way to do that is to write out the new contents to a new file and then use rename to move it over the old file.

share|improve this answer
There may also be a way to wrap an iostream around the file descriptor you get from open, depending on which C++ library you have. See How to construct a c++ fstream from a POSIX file descriptor? – Piotr Dobrogost Sep 25 '12 at 22:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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