判斷文件夾是否存在

RoutineRequired headerOptional 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 valueChecks file for
00Existence only
02Write-only
04Read-only
06Read and write


參考資料



留言