...
The fopen()
function does not allow the programmer to explicitly specify file access permissions. In the example below, if the call to fopen()
creates a new file, the access permissions for that file will be implementation-defined.
Code Block | ||
---|---|---|
| ||
/* ... */ FILE * fptr = fopen(file_name, "w"); if (!fptr){ /* Handle Error */ } /* ... */ |
...