What's the best way to check if a file exists in C? (cross platform) - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T09:25:33Zhttp://stackoverflow.com/feeds/question/230062http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform8What's the best way to check if a file exists in C? (cross platform)Dave Marshall2008-10-23T14:57:24Z2009-02-03T18:06:42Z
<p>Is there a better way than simply trying to open the file?</p>
<pre><code>int exists(const char *fname)
{
FILE *file;
if (file = fopen(fname, "r"))
{
fclose(file);
return 1;
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform/230067#23006710Answer by Mecki for What's the best way to check if a file exists in C? (cross platform)Mecki2008-10-23T14:59:16Z2008-10-23T14:59:16Z<p>Yes. Use stat(). See <a href="http://linux.die.net/man/2/stat" rel="nofollow">link</a>.</p>
<p>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).</p>
<p>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).</p>
http://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform/230068#23006815Answer by Graeme Perrow for What's the best way to check if a file exists in C? (cross platform)Graeme Perrow2008-10-23T14:59:32Z2009-02-03T18:06:42Z<p>Look up the <code>access()</code> function. You can replace your function with</p>
<pre><code>if( access( fname, F_OK ) != -1 ) {
// file exists
} else {
// file doesn't exist
}
</code></pre>
<p>You can also use <code>R_OK</code>, <code>W_OK</code>, and <code>X_OK</code> in place of <code>F_OK</code> to check for read permission, write permissio, and execute permission (respectively) rather than existence, and you can OR any of them together (i.e. check for both read <em>and</em> write permission using <code>R_OK|W_OK</code>)</p>
http://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform/230070#2300705Answer by codebunny for What's the best way to check if a file exists in C? (cross platform)codebunny2008-10-23T15:00:53Z2008-10-23T15:00:53Z<p>Use stat like this:</p>
<pre><code>int file_exist (char *filename)
{
struct stat buffer;
return (stat (filename, &buffer) == 0);
}
</code></pre>
http://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform/230090#2300900Answer by smacl for What's the best way to check if a file exists in C? (cross platform)smacl2008-10-23T15:07:01Z2008-10-23T15:07:01Z<p>From the Visual C++ help, I'd tend to go with</p>
<pre><code>/* ACCESS.C: This example uses _access to check the
* file named "ACCESS.C" to see if it exists and if
* writing is allowed.
*/
#include <io.h>
#include <stdio.h>
#include <stdlib.h>
void main( void )
{
/* Check for existence */
if( (_access( "ACCESS.C", 0 )) != -1 )
{
printf( "File ACCESS.C exists\n" );
/* Check for write permission */
if( (_access( "ACCESS.C", 2 )) != -1 )
printf( "File ACCESS.C has write permission\n" );
}
}
</code></pre>
<p>Also worth noting mode values of _accesss(const char *path,<strong>int mode</strong>)</p>
<p>00 Existence only</p>
<p>02 Write permission </p>
<p>04 Read permission</p>
<p>06 Read and write permission </p>
<p>As your <strong>fopen</strong> could fail in situations where the file existed but could not be opened as requested.</p>
<p>Edit: Just read Mecki's post. <strong>stat()</strong> does look like a neater way to go. Ho hum.</p>
http://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform/230581#2305812Answer by Dan for What's the best way to check if a file exists in C? (cross platform)Dan2008-10-23T17:14:05Z2008-10-23T17:14:05Z<p>Usually when you want to check if a file exists, it's because you want to <em>create</em> that file if it doesn't. Graeme Perrow's answer is good if you <strong>don't</strong> 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 <strong>bad</strong> security implications if the file created was a symlink!)</p>
<p>If you want to check for existence <em>and</em> create the file if it doens't exist, <strong>atomically</strong> so that there are no race condtiions, then use this:</p>
<pre><code>#include <fcntl.h>
#include <errno.h>
fd = open(pathname, O_CREAT | O_WRONLY);
if (fd < 0) {
/* failure */
if (errno == EEXIST) {
/* the file already existed */
...
}
} else {
/* now you can use the file */
}
</code></pre>