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
1 changed files with 4 additions and 0 deletions
|
@ -2738,6 +2738,10 @@ pub fn create_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
|
|||
|
||||
/// 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
|
||||
///
|
||||
/// This function currently corresponds to the `rmdir` function on Unix
|
||||
|
|
Loading…
Add table
Reference in a new issue