show/hide this revision's text 3 Fixed return code

Look up the access() function. You can replace your function with

if( access( fname, F_OK ) != -1 ) {
    // file exists
} else {
    // file doesn't exist
}

You can also use R_OK, W_OK, and X_OK in place of F_OK 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 and write permission using R_OK|W_OK)

show/hide this revision's text 2 added 344 characters in body

Look up the access() function. You can replace your function with

if( access( fname, F_OK ) ) {
    // file exists
} else {
    // file doesn't exist
}

You can also use R_OK, W_OK, and X_OK in place of F_OK 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 and write permission using R_OK|W_OK)

show/hide this revision's text 1

Look up the access() function. You can replace your function with

if( access( fname, F_OK ) ) {
    // file exists
} else {
    // file doesn't exist
}