Skip to content

Commit 04d2e35

Browse files
committed
Document behavior of create_dir_all wrt. empty path
The behavior makes sense because `Path::new("one_component").parent() == Some(Path::new(""))`, so if one naively wants to create the parent directory for a file to be written, it simply works. Closes #105108 by documenting the current behavior.
1 parent 58426f4 commit 04d2e35

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

library/std/src/fs.rs

+2
Original file line numberDiff line numberDiff line change
@@ -2310,6 +2310,8 @@ pub fn create_dir<P: AsRef<Path>>(path: P) -> io::Result<()> {
23102310
/// If this function returns an error, some of the parent components might have
23112311
/// been created already.
23122312
///
2313+
/// If the empty path is passed to this function, it always succeeds.
2314+
///
23132315
/// # Platform-specific behavior
23142316
///
23152317
/// This function currently corresponds to multiple calls to the `mkdir`

0 commit comments

Comments
 (0)