int _access(
const char *path,
int mode
);
mode value Checks file for
00 Existence only
02 Write-only
04 Read-only
06 Read and write
Return value: 0 if the file has the given mode or -1
int _access(
const char *path,
int mode
);
mode value Checks file for
00 Existence only
02 Write-only
04 Read-only
06 Read and write
Return value: 0 if the file has the given mode or -1