std::experimental::filesystem::remove, std::experimental::filesystem::remove_all
来自 cppreference.cn
< 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。
[编辑] 异常
不接受 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
[编辑] 另请参阅
擦除文件 (函数) |