xerr

Crates.ioxerr
lib.rsxerr
version0.1.14
sourcesrc
created_at2023-09-11 06:33:22.223563
updated_at2024-06-13 10:19:57.970271
descriptionlog error util
homepagehttps://github.com/i18n-site/rust/tree/main/xerr
repositoryhttps://github.com/i18n-site/rust.git
max_upload_size
id969295
size3,465
xxai.art (xxaier)

documentation

README

xerr

use std::io::Read;

use xerr::ok_or;

pub fn size(path: &str) -> usize {
  ok_or!(
    {
      let mut s = String::new();
      std::fs::File::open(path)?.read_to_string(&mut s)?;
      s.len()
    },
    0
  )
}

#[cfg(test)]
mod tests {
  use super::*;

  #[test]
  fn test() {
    loginit::init();
    let result = size("not exist");
    assert_eq!(result, 0);
  }
}
Commit count: 20

cargo fmt