...
The fopen()
function does not provide a mechanism 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. Note that on POSIX compliant systems the permissions may be influenced by the value of umask()
. More information on umask()
is available in the POSIX specification.
...