macro_rules! read_to_string {
    ($path:expr) => { ... };
}
Expand description

list directory return Vec

  if let Ok(_r) = read_to_string!("./foo.txt") {
     println!("{}", _r);
 }