Is there a better way than simply trying to open the file?
int exists(const char *fname)
{
FILE *file;
if (file = fopen(fname, "r"))
{
fclose(file);
return 1;
}
return 0;
}
|
3
|
Is there a better way than simply trying to open the file?
|
||||||||||
|
|
|
Look up the
You can also use |
||||||||||
|
|
|
Yes. Use stat(). See link. Stat will fail if the file doesn't exist, otherwise most likely succeed. If it does exist, but you have no read access to the directory where it exists, it will also fail, but in that case any method will fail (how can you inspect the content of a directory you may not see according to access rights? Simply, you can't). Oh, as someone else mentioned, you can also use access(). However I prefer stat(), as if the file exists it will immediately get me lots of useful information (when was it last updated, how big is it, owner and/or group that owns the file, access permissions, and so on). |
||||
|
|
|
Use stat like this:
|
||
|
|
Usually when you want to check if a file exists, it's because you want to create that file if it doesn't. Graeme Perrow's answer is good if you don't want to create that file, but it's vulnerable to a race condition if you do: another proces could create the file in between you checking if it exists, and you actually opening it to write to it. (Don't laugh... this could have bad security implications if the file created was a symlink!) If you want to check for existence and create the file if it doens't exist, atomically so that there are no race condtiions, then use this:
|
||||
|
|
|
From the Visual C++ help, I'd tend to go with
Also worth noting mode values of _accesss(const char *path,int mode) 00 Existence only 02 Write permission 04 Read permission 06 Read and write permission As your fopen could fail in situations where the file existed but could not be opened as requested. Edit: Just read Mecki's post. stat() does look like a neater way to go. Ho hum. |
||
|