rust-ape-example/src/bin/std_misc_file_open.rs
2022-09-07 10:49:49 +05:30

33 lines
815 B
Rust

// ./src/std_misc/file/open.md
use std::fs::File;
use std::io::prelude::*;
use std::path::Path;
fn part0() {
// Create a path to the desired file
let path = Path::new("hello.txt");
let display = path.display();
// Open the path in read-only mode, returns `io::Result<File>`
let mut file = match File::open(&path) {
Err(why) => panic!("couldn't open {}: {}", display, why),
Ok(file) => file,
};
// Read the file contents into a string, returns `io::Result<usize>`
let mut s = String::new();
match file.read_to_string(&mut s) {
Err(why) => panic!("couldn't read {}: {}", display, why),
Ok(_) => print!("{} contains:\n{}", display, s),
}
// `file` goes out of scope, and the "hello.txt" file gets closed
}
pub fn main() {
part0();
}