rust-fatfs/examples/cat.rs

21 lines
552 B
Rust
Raw Normal View History

2017-09-24 09:13:50 +08:00
extern crate rfat;
2017-09-23 05:20:06 +08:00
2017-09-24 20:34:23 +08:00
use std::env;
2017-09-23 05:20:06 +08:00
use std::fs::File;
use std::io::BufReader;
2017-09-24 20:34:23 +08:00
use std::io::prelude::*;
2017-09-23 05:20:06 +08:00
use std::str;
2017-09-24 09:13:50 +08:00
use rfat::FatFileSystem;
2017-09-23 05:20:06 +08:00
fn main() {
2017-09-24 03:53:32 +08:00
let file = File::open("resources/fat32.img").unwrap();
let buf_rdr = BufReader::new(file);
let mut fs = FatFileSystem::new(Box::new(buf_rdr)).unwrap();
2017-09-23 05:20:06 +08:00
let mut root_dir = fs.root_dir();
2017-09-24 20:34:23 +08:00
let mut file = root_dir.get_file(&env::args().nth(1).unwrap()).unwrap();
let mut buf = vec![];
file.read_to_end(&mut buf).unwrap();
print!("{}", str::from_utf8(&buf).unwrap());
2017-09-23 05:20:06 +08:00
}