Routine | Required header | Optional headers |
---|---|---|
_access | <io.h> | <errno.h> |
_waccess | <wchar.h> or <io.h> | <errno.h> |
int _access( const char *path, int mode );
int _waccess( const wchar_t *path, int mode );
該函數功能為確定文件或文件夾的訪問權限,
如果指定的訪問權限有效,則函數返回0,否則返回 - 1
Tchar.h routine | _UNICODE and _MBCS not defined | _MBCS defined | _UNICODE defined |
---|---|---|---|
_taccess | _access | _access | _waccess |
mode value | Checks file for |
---|---|
00 | Existence only |
02 | Write-only |
04 | Read-only |
06 | Read and write |
參考資料
留言
張貼留言