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.
|
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:
Most of these, but unfortunately not all, have equivalents at the higher level 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 |
||||
|
existsfunction). – birryree Oct 22 '11 at 22:56