在C++中,可以使用std::filesystem::current_path()
函數來獲取當前路徑。需要包含<filesystem>
頭文件。
以下是一個示例代碼:
#include <iostream>
#include <filesystem>
int main() {
std::filesystem::path currentPath = std::filesystem::current_path();
std::cout << "Current Path: " << currentPath << std::endl;
return 0;
}
此代碼將輸出當前路徑。