c++获取当前路径的方法是什么

c++
1406
2023/12/16 11:49:11
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在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;
}

此代码将输出当前路径。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: C++调用Python,安全吗