diff options
| author | Lucas Dumont <contact@lucasdumont.com> | 2022-06-29 06:29:10 +0200 |
|---|---|---|
| committer | Lucas Dumont <contact@lucasdumont.com> | 2022-07-11 09:48:47 +0200 |
| commit | 07a0fd2c1ee79faafafed2cfe60e640ca106fdb4 (patch) | |
| tree | 29847330a073760f34871e92179a699968b5e540 | |
| parent | a51fb2ba827f24ec4d676a9575a0a5e46afd302a (diff) | |
| download | rust-07a0fd2c1ee79faafafed2cfe60e640ca106fdb4.tar.gz rust-07a0fd2c1ee79faafafed2cfe60e640ca106fdb4.zip | |
Add std::fs::write documentation precision
As mentioned in #97947, the documentation is updated
| -rw-r--r-- | library/std/src/fs.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/library/std/src/fs.rs b/library/std/src/fs.rs index f46997b807a..d799776548a 100644 --- a/library/std/src/fs.rs +++ b/library/std/src/fs.rs @@ -295,6 +295,9 @@ pub fn read_to_string<P: AsRef<Path>>(path: P) -> io::Result<String> { /// This function will create a file if it does not exist, /// and will entirely replace its contents if it does. /// +/// Depending on the platform, this function may fail if the +/// full directory path does not exist. +/// /// This is a convenience function for using [`File::create`] and [`write_all`] /// with fewer imports. /// @@ -349,6 +352,9 @@ impl File { /// This function will create a file if it does not exist, /// and will truncate it if it does. /// + /// Depending on the platform, this function may fail if the + /// full directory path does not exist. + /// /// See the [`OpenOptions::open`] function for more details. /// /// # Examples |
