Rollup merge of #41007 - pgerber:dir_builder, r=frewsxcv
Improve documentation for `std::fs::DirBuilder`
This commit is contained in:
commit
263d5a0daf
@ -1726,9 +1726,9 @@ pub fn new() -> DirBuilder {
|
||||
}
|
||||
}
|
||||
|
||||
/// Indicate that directories create should be created recursively, creating
|
||||
/// all parent directories if they do not exist with the same security and
|
||||
/// permissions settings.
|
||||
/// Indicates that directories should be created recursively, creating all
|
||||
/// parent directories. Parents that do not exist are created with the same
|
||||
/// security and permissions settings.
|
||||
///
|
||||
/// This option defaults to `false`.
|
||||
///
|
||||
@ -1749,6 +1749,9 @@ pub fn recursive(&mut self, recursive: bool) -> &mut Self {
|
||||
/// Create the specified directory with the options configured in this
|
||||
/// builder.
|
||||
///
|
||||
/// It is considered an error if the directory already exists unless
|
||||
/// recursive mode is enabled.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
/// ```no_run
|
||||
|
Loading…
Reference in New Issue
Block a user