std::filesystem::remove, std::filesystem::remove_all
来自cppreference.com
< cpp | filesystem
在标头 <filesystem> 定义
|
||
bool remove( const std::filesystem::path& p ); |
(1) | (C++17 起) |
bool remove( const std::filesystem::path& p, std::error_code& ec ) noexcept; |
(2) | (C++17 起) |
std::uintmax_t remove_all( const std::filesystem::path& p ); |
(3) | (C++17 起) |
std::uintmax_t remove_all( const std::filesystem::path& p, std::error_code& ec ); |
(4) | (C++17 起) |
参数
p | - | 要删除的路径 |
ec | - | 不抛出重载中报告错误的输出形参 |
返回值
1,2) 若文件被删除则为 true,若文件不存在则为 false。接受
error_code&
实参的重载在错误时返回 false。异常
若内存分配失败,则任何不标记为 noexcept
的重载可能抛出 std::bad_alloc 。
1,3) 抛出 std::filesystem::filesystem_error,构造时以 p 为第一路径实参并以OS 错误码为错误码实参。
若 OS API 调用失败,则 @2,4@ 设置 std::error_code& 形参
为 OS API 错误码,而未发生错误时则执行 ec.clear()。注解
在 POSIX 系统上,此函数通常按需调用 unlink
和 rmdir
,在 Windows 上则是 DeleteFileW
和 RemoveDirectoryW
。
示例
运行此代码
#include <cstdint> #include <filesystem> #include <iostream> namespace fs = std::filesystem; int main() { fs::path tmp{std::filesystem::temp_directory_path()}; std::filesystem::create_directories(tmp / "abcdef/example"); std::uintmax_t n{fs::remove_all(tmp / "abcdef")}; std::cout << "删除 " << n << " 个文件或目录\n"; }
可能的输出:
删除 2 个文件或目录
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 3014 | C++17 | remove_all 的 error_code 重载被标记为 noexcept 但能分配内存
|
移除 noexcept |
参阅
删除文件 (函数) |