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`)