This crate aims to provide convenient one-liners for file I/O operations that carry no dependencies and don't require unsafe code.
Furthermore, to ensure that multi-byte primitive types and pointers like usize
are encoded correctly, compilation of the crate will take into account:
All the methods are implemented directly for any type that implements the Read
trait, so all you need to do is bring the traits into scope.
```rust extern crate file_utils;
use std::io; use std::fs::File;
use file_utils::read::Read; // <--- bring the Read trait into scope
fn foo() -> io::Result<()> { let file = File::open("binary-file")?;
// Read the first 8 bytes of the file into a u64
let uns: u64 = file.read_u64()?;
// And the next 4 bytes into an f32
let flt: f32 = file.read_f32()?;
Ok(())
} ```
All primitive number types can be read this way
```rust
fn readusize(&mut self)-> io::Result
// 8-bit
fn readu8(&mut self)-> io::Result
// 16-bit
fn readu16(&mut self)-> io::Result
// 32-bit
fn readu32(&mut self)-> io::Result
// 64-bit
fn readu64(&mut self)-> io::Result
Similarly to Read
, this crate provides its writing methods as implementations to any type that implements Write
.
```rust extern crate file_utils;
use std::io; use std::fs::File;
use file_utils::write::Write; // <--- bring the Write trait into scope
fn foo() -> io::Result<()> { let file = File::create("binary-file")?;
// Write a usize to the file, which will either be 4 or 8 bytes depending on architecture
file.write_usize(12)?;
// Write a 4-byte floating point number
file.write_f32(1.42)?;
Ok(())
} ```