async-std/examples/line-count.rs

27 lines
633 B
Rust
Raw Normal View History

2019-08-12 10:44:10 +00:00
//! Counts the number of lines in a file given as an argument.
use std::env::args;
use async_std::fs::File;
use async_std::io::{self, BufReader};
use async_std::prelude::*;
use async_std::task;
fn main() -> io::Result<()> {
let path = args().nth(1).expect("missing path argument");
task::block_on(async {
2019-08-14 02:22:37 +00:00
let file = File::open(&path).await?;
let mut lines = BufReader::new(file).lines();
2019-08-12 10:44:10 +00:00
let mut count = 0u64;
while let Some(line) = lines.next().await {
line?;
count += 1;
}
println!("The file contains {} lines.", count);
Ok(())
})
}