本文简要介绍rust语言中 Function std::fs::remove_dir_all
的用法。
用法
pub fn remove_dir_all<P: AsRef<Path>>(path: P) -> Result<()>
删除所有内容后,删除此路径中的目录。谨慎使用!
此函数不跟随符号链接,它只会删除符号链接本身。
特定于平台的行为
该函数目前对应 Unix 上的 openat
、 fdopendir
、 unlinkat
和 lstat
函数(除了 10.10 版本之前的 macOS 和 REDOX)以及 CreateFileW
、 GetFileInformationByHandleEx
、 SetFileInformationByHandle
;以及 Windows 上的 NtOpenFile
函数。请注意,这个may change in the future。
在版本 10.10 和 REDOX 之前的 macOS 上,此函数不受 time-of-check 到 time-of-use (TOCTOU) 竞争条件的保护,不应在这些平台上的安全敏感代码中使用。所有其他平台都受到保护。
错误
请参阅 fs::remove_file
和 fs::remove_dir
。
例子
use std::fs;
fn main() -> std::io::Result<()> {
fs::remove_dir_all("/some/dir")?;
Ok(())
}
相关用法
- Rust remove_dir用法及代码示例
- Rust remove_file用法及代码示例
- Rust remove_var用法及代码示例
- Rust rename用法及代码示例
- Rust read用法及代码示例
- Rust read_to_string用法及代码示例
- Rust read_link用法及代码示例
- Rust resume_unwind用法及代码示例
- Rust repeat用法及代码示例
- Rust ready用法及代码示例
- Rust read_unaligned用法及代码示例
- Rust read_dir用法及代码示例
- Rust read_volatile用法及代码示例
- Rust repeat_with用法及代码示例
- Rust replace用法及代码示例
- Rust range用法及代码示例
- Rust UdpSocket.set_multicast_loop_v6用法及代码示例
- Rust i64.overflowing_add_unsigned用法及代码示例
- Rust Box.downcast用法及代码示例
- Rust BTreeMap.last_key_value用法及代码示例
- Rust str.make_ascii_uppercase用法及代码示例
- Rust u128.checked_pow用法及代码示例
- Rust usize.wrapping_mul用法及代码示例
- Rust AtomicU8.fetch_sub用法及代码示例
- Rust PanicInfo.payload用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Function std::fs::remove_dir_all。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。