mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 08:13:41 +00:00
Rollup merge of #133183 - n0toose:improve-remove-dir-docs, r=joboet
Mention std::fs::remove_dir_all in std::fs::remove_dir
This commit is contained in:
commit
d5dca43df6
@ -2738,6 +2738,10 @@ pub fn create_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
|
|||||||
|
|
||||||
/// Removes an empty directory.
|
/// Removes an empty directory.
|
||||||
///
|
///
|
||||||
|
/// If you want to remove a directory that is not empty, as well as all
|
||||||
|
/// of its contents recursively, consider using [`remove_dir_all`]
|
||||||
|
/// instead.
|
||||||
|
///
|
||||||
/// # Platform-specific behavior
|
/// # Platform-specific behavior
|
||||||
///
|
///
|
||||||
/// This function currently corresponds to the `rmdir` function on Unix
|
/// This function currently corresponds to the `rmdir` function on Unix
|
||||||
|
Loading…
Reference in New Issue
Block a user