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。3,4) 返回被删除的文件和目录的数量(如果 p 从一开始就不存在,则可能为零)。采用
error_code&
参数的重载在发生错误时返回 static_cast<std::uintmax_t>(-1)。[编辑] 异常
任何未标记为 noexcept
的重载在内存分配失败时都可能抛出 std::bad_alloc。
[编辑] 说明
在 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 << "Deleted " << n << " files or directories\n"; }
可能的输出
Deleted 2 files or directories
[编辑] 缺陷报告
以下更改行为的缺陷报告已追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确的行为 |
---|---|---|---|
LWG 3014 | C++17 | remove_all 的 error_code 重载标记为 noexcept 但可以分配内存 |
noexcept 已移除 |
[编辑] 参见
擦除文件 (函数) |