91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

如何利用C++ File類進行文件路徑操作

c++
小樊
111
2024-08-19 19:47:33
欄目: 編程語言

在C++中,可以使用File類來進行文件路徑操作。以下是一些常見的文件路徑操作示例:

  1. 獲取當前工作目錄:
#include <iostream>
#include <filesystem>

int main() {
    std::filesystem::path current_path = std::filesystem::current_path();
    std::cout << "Current path: " << current_path << std::endl;
    return 0;
}
  1. 檢查文件或目錄是否存在:
#include <iostream>
#include <filesystem>

int main() {
    std::filesystem::path file_path = "path/to/file.txt";
    if (std::filesystem::exists(file_path)) {
        std::cout << "File exists." << std::endl;
    } else {
        std::cout << "File does not exist." << std::endl;
    }
    return 0;
}
  1. 創建目錄:
#include <iostream>
#include <filesystem>

int main() {
    std::filesystem::path dir_path = "path/to/new/dir";
    std::filesystem::create_directory(dir_path);
    return 0;
}
  1. 刪除文件或目錄:
#include <iostream>
#include <filesystem>

int main() {
    std::filesystem::path file_path = "path/to/file.txt";
    std::filesystem::remove(file_path);
    return 0;
}

這些示例演示了如何使用C++的File類進行文件路徑操作,包括獲取當前工作目錄、檢查文件是否存在、創建目錄以及刪除文件等操作。可以根據需要進行相應的調整和擴展。

0
宁国市| 怀仁县| 松溪县| 丰城市| 临城县| 车险| 邹城市| 潢川县| 保定市| 阳朔县| 闻喜县| 岳西县| 长宁县| 江口县| 盘锦市| 伊川县| 菏泽市| 资兴市| 上栗县| 宜昌市| 浦江县| 甘南县| 大港区| 文山县| 太康县| 阳曲县| 酉阳| 封开县| 常德市| 稷山县| 华阴市| 汤阴县| 祥云县| 漳州市| 兴安县| 通州区| 仙居县| 南澳县| 灵台县| 杭锦旗| 静安区|