如果要简单处理文件和文件夹的时候(删除、重命名等),使用Windows的系统函数会十分麻烦,可以尝试一下使用Boost库来进行处理
头文件
#include <boost/filesystem.hpp>
如果要获得每次处理的结果错误码,需要加上头文件:
#include <boost/system/error_code.hpp>
boost::system::error_code err;
如果不需要的话只需要把err去掉
以下路径均为绝对路径
基础类型
boost::filesystem::path filepath;
判断文件/文件夹是否存在:
boost::filesystem::exists(filepath, err)
//true 存在
//false 不存在
判断文件路径是否文件夹:
boost::filesystem::is_directory(filepath, err)
//true 是
//false 不是
删除文件:
boost::filesystem::remove(filepath, err)
//true 删除成功
//false 删除失败
重命名文件:
boost::filesystem::rename(oldname, newname, err)
创建文件/文件夹:
boost::filesystem::create_directories(filepath, err)
获取当前路径:
boost::filesystem::current_path()
复制文件/文件夹:
boost::filesystem::copy(frompath, topath)
遍历文件夹:
boost::filesystem::directory_iterator fileIter(filepath);
boost::filesystem::directory_iterator enditer;
for (; fileIter != enditer; ++fileIter) {//每个文件的路径fileIter->path();
}
判断文件是否存在父目录
filepath.has_root_directory()
//true 存在父目录
//false 不存在
获取当前文件路径的父目录
filepath.parent_path()
判断当前文件路径是否是 ‘.’/’…’(遍历的时候可能用得上):
filepath.filename_is_dot()
filepath.filename_is_dot_dot()
如果需要,还可以将文件路径转成string或wstring
filepath->string()
filepath->wstring()