blob: 26dff1a8046ac7ad383e90bb2f7fe763f5ac8923 [file] [log] [blame]
use std::io::File;
fn main() {
// 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 `IoResult<File>`
let mut file = match File::open(&path) {
// The `desc` field of `IoError` is a string that describes the error
Err(why) => fail!("couldn't open {}: {}", display, why.desc),
Ok(file) => file,
};
// Read the file contents into a string, returns `IoResult<String>`
match file.read_to_string() {
Err(why) => fail!("couldn't read {}: {}", display, why.desc),
Ok(string) => print!("{} contains:\n{}", display, string),
}
// `file` goes out of scope, and the "hello.txt" file gets closed
}