forked from mirror/async-std
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
660 B
Rust
30 lines
660 B
Rust
5 years ago
|
//! Counts the number of lines in a file given as an argument.
|
||
|
|
||
|
#![feature(async_await)]
|
||
|
|
||
|
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 {
|
||
|
let file = BufReader::new(File::open(&path).await?);
|
||
|
|
||
|
let mut lines = file.lines();
|
||
|
let mut count = 0u64;
|
||
|
|
||
|
while let Some(line) = lines.next().await {
|
||
|
line?;
|
||
|
count += 1;
|
||
|
}
|
||
|
|
||
|
println!("The file contains {} lines.", count);
|
||
|
Ok(())
|
||
|
})
|
||
|
}
|