在C++中,可以使用 <fstream>
頭文件中的 ifstream
類來判斷路徑是否存在。下面是一個示例代碼:
#include <iostream>
#include <fstream>
bool pathExists(const std::string& path) {
std::ifstream file(path);
return file.good();
}
int main() {
std::string path = "C:/path/to/file.txt";
if (pathExists(path)) {
std::cout << "Path exists!" << std::endl;
} else {
std::cout << "Path does not exist!" << std::endl;
}
return 0;
}
在上面的代碼中,pathExists
函數接受一個路徑字符串作為參數,使用 ifstream
類嘗試打開該路徑對應的文件。如果打開成功,則說明路徑存在,返回 true
;否則,返回 false
。在 main
函數中,我們可以根據返回值來確定路徑是否存在,并進行相應的操作。