gpt4 book ai didi

c++ - 使用文件系统 C++ 库创建文件

转载 作者:行者123 更新时间:2023-12-01 12:29:47 25 4
gpt4 key购买 nike

如何使用文件系统 C++ 库创建文件?

我知道有不同的方法来创建文件,但我对文件系统库特别感兴趣。

最佳答案

此代码将创建一个文件夹和一个 txt 文件(+ 在其中添加一些文本)

#include <iostream>
#include <filesystem>
#include <fstream>

int main()
{
std::filesystem::path path{ "C:\\TestingFolder" }; //creates TestingFolder object on C:
path /= "my new file.txt"; //put something into there
std::filesystem::create_directories(path.parent_path()); //add directories based on the object path (without this line it will not work)

std::ofstream ofs(path);
ofs << "this is some text in the new file\n";
ofs.close();

return 0;
}

关于c++ - 使用文件系统 C++ 库创建文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36775493/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com