pub fn write_all<P>(path: P, content: &str) -> Result<()>Expand description
Write String content into file.
§Errors
This function will return an error in the following situations, but is not limited to just these cases:
- This
pathis not a file. - This
pathfile does not exist. - The current process does not have the permission to access
path.
§Example
ⓘ
extern crate fs_extra;
use fs_extra::file::read_to_string;
write_all("foo.txt", "contents" )?; // Create file foo.txt and send content inside