Commonly Used Methods | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
Write to a File | ||||||||||||||||||||||||||||
the following program creates a file 'data.txt' the create() method is used to create a file the method returns a file handle if the file is created successfully the last line write_all function will write bytes in newly created file if any of the operations fail, the expect() function returns an error message use std::io::Write; fn main() { let mut file = std::fs::File::create("data.txt").expect("create failed"); file.write_all("Hello World".as_bytes()).expect("write failed"); file.write_all("\nTutorialsPoint".as_bytes()).expect("write failed"); println!("data written to file" ); } |
||||||||||||||||||||||||||||
Read from a File | ||||||||||||||||||||||||||||
the following program reads the contents in a file data.txt and prints it to the console the open() function is used to open an existing file an absolute or relative path to the file is passed to the open() function as a parameter the open() function throws an exception if the file does not exist, or if it is not accessible for whatever reason if it succeeds, a file handle to such file is assigned to the 'file' variable the read_to_string() function of the 'file' handle is used to read contents of that file into a string variable use std::io::Read; fn main(){ let mut file = std::fs::File::open("data.txt").unwrap(); let mut contents = String::new(); file.read_to_string(&mut contents).unwrap(); print!("{}", contents); } |
||||||||||||||||||||||||||||
Delete a file | ||||||||||||||||||||||||||||
example uses the remove_file() function to delete a file the expect() function returns a custom message in case an error occurs use std::fs; fn main() { fs::remove_file("data.txt").expect("could not remove file"); println!("file is removed"); } |
||||||||||||||||||||||||||||
Append data to a file | ||||||||||||||||||||||||||||
the append() function writes data to the end of the file
use std::fs::OpenOptions; use std::io::Write; fn main() { let mut file = OpenOptions::new().append(true).open("data.txt").expect("cannot open file"); file.write_all("Hello World".as_bytes()).expect("write failed"); file.write_all("\nTutorialsPoint".as_bytes()).expect("write failed"); println!("file append success"); } |
||||||||||||||||||||||||||||
Copy a file | ||||||||||||||||||||||||||||
example copies the contents in a file to a new file
use std::io::Read; use std::io::Write; fn main() { let mut command_line: std::env::Args = std::env::args(); command_line.next().unwrap(); // skip the executable file name // accept the source file let source = command_line.next().unwrap(); // accept the destination file let destination = command_line.next().unwrap(); let mut file_in = std::fs::File::open(source).unwrap(); let mut file_out = std::fs::File::create(destination).unwrap(); let mut buffer = [0u8; 4096]; loop { let nbytes = file_in.read(&mut buffer).unwrap(); file_out.write(&buffer[..nbytes]).unwrap(); if nbytes < buffer.len() { break; } } }to run app main.exe <source file> <destination file> |