Skip to content

Commit

Permalink
add guarantee about remove_dir and remove_file error kinds
Browse files Browse the repository at this point in the history
approved in ACP rust-lang/libs-team#433
  • Loading branch information
lolbinarycat committed Aug 29, 2024
1 parent b1a56b5 commit 5fa71af
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions std/src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1989,6 +1989,11 @@ impl AsInner<fs_imp::DirEntry> for DirEntry {
/// * The file doesn't exist.
/// * The user lacks permissions to remove the file.
///
/// This function will only ever return an error of kind `NotFound` if the given
/// path does not exist. Note that the inverse is not true,
/// ie. if a path does not exist, its removal may fail for a number of reasons,
/// such as insufficient permissions.
///
/// # Examples
///
/// ```no_run
Expand Down Expand Up @@ -2446,6 +2451,11 @@ pub fn create_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
/// * The user lacks permissions to remove the directory at the provided `path`.
/// * The directory isn't empty.
///
/// This function will only ever return an error of kind `NotFound` if the given
/// path does not exist. Note that the inverse is not true,
/// ie. if a path does not exist, its removal may fail for a number of reasons,
/// such as insufficient permissions.
///
/// # Examples
///
/// ```no_run
Expand Down

0 comments on commit 5fa71af

Please sign in to comment.