std::experimental::filesystem::remove, std::experimental::filesystem::remove_all
来自 cppreference.com
< cpp | experimental | fs
定义在头文件 <experimental/filesystem> 中 |
||
bool remove( const path& p ); bool remove( const path& p, error_code& ec ); |
(1) | (文件系统 TS) |
std::uintmax_t remove_all( const path& p ); std::uintmax_t remove_all( const path& p, error_code& ec ); |
(2) | (文件系统 TS) |
内容 |
[编辑] 参数
p | - | 要删除的路径 |
ec | - | 非抛出重载中用于错误报告的输出参数 |
[编辑] 返回值
1) 如果文件被删除,则为 true,如果文件不存在,则为 false。接受 error_code& 参数的重载在发生错误时返回 false。
2) 返回已删除的文件和目录的数量(如果 p 从一开始就不存在,则可能为零)。接受 error_code& 参数的重载在发生错误时返回 static_cast<std::uintmax_t>(-1)。
[编辑] 异常
不接受 error_code& 参数的重载在底层操作系统 API 错误时抛出 filesystem_error,用 p 作为第一个参数构造,并将操作系统错误代码作为错误代码参数。 std::bad_alloc 可能在内存分配失败时被抛出。接受 error_code& 参数的重载会将其设置为操作系统 API 错误代码(如果操作系统 API 调用失败),并在没有错误发生时执行 ec.clear()。此重载具有noexcept 规范:
noexcept
[编辑] 备注
在 POSIX 系统上,此函数通常根据需要调用 unlink
和 rmdir
,在 Windows 上调用 RemoveDirectoryW
和 DeleteFileW
。
[编辑] 示例
运行此代码
#include <cstdint> #include <experimental/filesystem> #include <iostream> namespace fs = std::experimental::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"; }
可能的输出
Deleted 2 files or directories
[编辑] 另请参阅
删除文件 (函数) |