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)
