Function std::fs::write [] [src]

pub fn write<P: AsRef<Path>, C: AsRef<[u8]>>(path: P, contents: C) -> Result<()>
🔬 This is a nightly-only experimental API. (fs_read_write #46588)

Write a slice as the entire contents of a file.

This function will create a file if it does not exist, and will entirely replace its contents if it does.

This is a convenience function for using File::create and write_all with fewer imports.

Examples

#![feature(fs_read_write)]

use std::fs;

fs::write("foo.txt", b"Lorem ipsum")?;Run