c++ 删除文件及文件夹
< filesystem >
定义于头文件 < filesystem > bool remove(const std:: filesystem::path& p); bool remove(const std:: filesystem::path& p, std::error_code& ec) noexcept; (1) (C++17 起) std::uintmax_t remove_all(const std:: filesystem::path& p); std::uintmax_t remove_all(const std:: filesystem::path& p, std::error_code& ec); (2) (C++17 起)
1) remove
删除路径 p 所标识的文件或空目录,如同用 POSIX remove 。不跟随符号链接(移除符号链接,而非其目标)
2) remove_all
递归地删除 p 的内容(若它是目录)及其所有子目录的内容,然后删除 p 自身,如同重复应用 POSIX remove 。不跟随符号链接(移除符号链接,而非其目标)
参数
p - 要删除的路径
ec - 不抛出重载中报告错误的输出参数
返回值
1) 若文件被删除则为 true ,若文件不存在则为 false 。接受 error_code& 参数的重载在错误时返回 false 。
2) 返回被删除的文件及目录数量(可以是零,若用以起始的 p 不存在)。接受 error_code& 参数的重载在错误时返回 static_cast
详细说明: https://zh.cppreference.com/w/cpp/filesystem/remove
#include <iostream>
#include <cstdint>
#include <filesystem>
namespace fs = std::filesystem;
int main()
{
fs::path dir = fs::temp_directory_path();
fs::create_directories(dir / "abcdef/example");
std::uintmax_t n = fs::remove_all(dir / "abcdef");
std::cout << "Deleted " << n << " files or directories\n";
}