■ BufReader<T> 구조체의 lines 메소드를 사용해 순차적으로 파일의 행을 읽는 방법을 보여준다.
▶ 예제 코드 (RS)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
use std::fs; use std::io; use std::io::BufRead; fn main() { let file_path : &str = "c:/dictionary.txt"; let argument_vector : Vec<String> = std::env::args().collect(); if argument_vector.len() < 2 { println!("[USAGE] ./dictionray word"); return; } let search_word : &String = &argument_vector[1]; let file : fs::File = fs::File::open(file_path).unwrap(); let reader : io::BufReader<fs::File> = io::BufReader::new(file); for line in reader.lines() { let line_string = line.unwrap(); if line_string.find(search_word) == None { continue; } println!("{}", line_string); } } |