C++17 filesystem
设置C++17
用VC的话, 默认是不开启C++的, 设置一下
使用
#include <filesystem>
using namespace std;
using fs = std::filesystem;
类
path
类 创建一个path类
//下面大部分操作中的 文件名 实际上是个paeh类, 当然写成字符串也会转型
directory_entry
类: 文件入口
directory_iterator
类: 这是一个容器
file_status
类: 获取和修改文件/目录的属性
操作
定位current_path()
cout<<"current path: "<<fs::current_path()<<std::endl;
增 使用fstream
ofstream ofs("example.txt");
ofs.close();
删remove()
查exists()
if(fs::exists(文件名))
{
fs::remove(文件名);
std::cout<<"file deleted"<<std::endl;
}
改remame()
try
{
fs::remame(旧文件名,新文件名);
}
catch(fs::filesystem_error& e)
{
cout<<"file name change failed: "<<e.what()<<endl;
}