From 07a0fd2c1ee79faafafed2cfe60e640ca106fdb4 Mon Sep 17 00:00:00 2001 From: Lucas Dumont Date: Wed, 29 Jun 2022 06:29:10 +0200 Subject: [PATCH] Add std::fs::write documentation precision As mentioned in #97947, the documentation is updated --- library/std/src/fs.rs | 6 ++++++ 1 file changed, 6 insertions(+) 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>(path: P) -> io::Result { /// 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