在Linux下,access函數(shù)的聲明在
int access(const char *pathname, int mode);
access函數(shù)用來判斷指定的文件或目錄是否存在(F_OK),已存在的文件或目錄是否有可讀(R_OK)、可寫(W_OK)、可執(zhí)行(X_OK)權限。F_OK、R_OK、W_OK、X_OK這四種方式通過access函數(shù)中的第二個參數(shù)mode指定。如果指定的方式有效,則此函數(shù)返回0,否則返回-1。
在Windows下沒有access函數(shù),但在
int _access(const char* _Filename, int _AccessMode);
windows下的函數(shù)_access與linux下的access函數(shù)功能類似,用來判斷指定的文件或目錄是否僅存在(00),已存在的文件或目錄是否有僅讀(04)、僅寫(02)、既可讀又可寫(06)權限。這四種方式通過_access函數(shù)中的第二個參數(shù)mode指定,如果mode傳入的值不是0或2或4或6,調(diào)用此函數(shù)則會crash。如果指定的方式有效,則此函數(shù)返回0,否則返回-1。
以下是測試代碼(access.cpp):
#include "access.hpp" #include#include #include #ifdef _MSC_VER #include #else #include #endif namespace access_ { int test_access_1() { #ifdef _MSC_VER const std::string path{ "E:/GitCode/Messy_Test/" }; const std::vector names {"testdata", ".gitignore", "src", "invalid"}; for (auto& name : names) { const std::string tmp = path + name; fprintf(stdout, "file or directory name: \"%s\": ", name.c_str()); if (_access(tmp.c_str(), 0) == 0) fprintf(stdout, "exist, "); else fprintf(stdout, "not exist, "); if (_access(tmp.c_str(), 4) == 0) fprintf(stdout, "only has read premission, "); else fprintf(stdout, "does not have read premission, "); if (_access(tmp.c_str(), 2) == 0) fprintf(stdout, "only has write premission, "); else fprintf(stdout, "does not have write premission, "); if (_access(tmp.c_str(), 6) == 0) fprintf(stdout, "has both read and write premission\n"); else fprintf(stdout, "has neither read nor write premission\n"); } #else const std::vector names {"testdata", "CMakeLists.txt", "build.sh", "invalid"}; for (auto name : names) { fprintf(stdout, "file or directory name: \"%s\": ", name); if (access(name, F_OK) == 0) fprintf(stdout, "exist, "); else fprintf(stdout, "not exist, ", name); if (access(name, R_OK) == 0) fprintf(stdout, "has read premission, "); else fprintf(stdout, "does not have read premission, "); if (access(name, W_OK) == 0) fprintf(stdout, "has write premission, "); else fprintf(stdout, "does not have write premission, "); if (access(name, X_OK) == 0) fprintf(stdout, "has execute premission\n"); else fprintf(stdout, "does not have execute premission\n"); } #endif return 0; } } // namespace access_
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)建站www.cdcxhl.com,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。