File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -1989,6 +1989,11 @@ impl AsInner<fs_imp::DirEntry> for DirEntry {
1989
1989
/// * The file doesn't exist.
1990
1990
/// * The user lacks permissions to remove the file.
1991
1991
///
1992
+ /// This function will only ever return an error of kind `NotFound` if the given
1993
+ /// path does not exist. Note that the inverse is not true,
1994
+ /// ie. if a path does not exist, its removal may fail for a number of reasons,
1995
+ /// such as insufficient permissions.
1996
+ ///
1992
1997
/// # Examples
1993
1998
///
1994
1999
/// ```no_run
@@ -2446,6 +2451,11 @@ pub fn create_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
2446
2451
/// * The user lacks permissions to remove the directory at the provided `path`.
2447
2452
/// * The directory isn't empty.
2448
2453
///
2454
+ /// This function will only ever return an error of kind `NotFound` if the given
2455
+ /// path does not exist. Note that the inverse is not true,
2456
+ /// ie. if a path does not exist, its removal may fail for a number of reasons,
2457
+ /// such as insufficient permissions.
2458
+ ///
2449
2459
/// # Examples
2450
2460
///
2451
2461
/// ```no_run
You can’t perform that action at this time.
0 commit comments