c++ mkdir函数如何进行路径验证

c++
868
2024/12/6 3:22:52
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C++中,你可以使用std::filesystem库中的pathexists函数来验证路径是否存在,然后使用create_directory函数来创建目录

#include <iostream>
#include <filesystem>

bool create_directory_if_not_exists(const std::string& path) {
    // 检查路径是否存在
    if (!std::filesystem::exists(path)) {
        // 如果不存在,则创建目录
        try {
            std::filesystem::create_directory(path);
            std::cout << "Directory created: " << path << std::endl;
            return true;
        } catch (const std::filesystem::filesystem_error& e) {
            std::cerr << "Error creating directory: " << e.what() << std::endl;
            return false;
        }
    } else {
        std::cout << "Directory already exists: " << path << std::endl;
        return true;
    }
}

int main() {
    std::string path = "test_directory";
    create_directory_if_not_exists(path);
    return 0;
}

在这个示例中,我们首先检查给定的路径是否存在。如果不存在,我们尝试使用create_directory函数创建目录。如果创建成功,我们返回true。如果在创建过程中发生错误,我们捕获filesystem_error异常并返回false。如果路径已经存在,我们返回true

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

推荐阅读: 在C++中如何自定义std::make_heap的行为