2 releases

Uses old Rust 2015

0.3.4 Jul 12, 2022
0.3.3 Jul 12, 2022

#1380 in Filesystem

Download history 79/week @ 2024-01-15 242/week @ 2024-01-22 246/week @ 2024-01-29 297/week @ 2024-02-05 615/week @ 2024-02-12 480/week @ 2024-02-19 391/week @ 2024-02-26 265/week @ 2024-03-04 232/week @ 2024-03-11 221/week @ 2024-03-18 135/week @ 2024-03-25 276/week @ 2024-04-01 61/week @ 2024-04-08 74/week @ 2024-04-15 239/week @ 2024-04-22 154/week @ 2024-04-29

533 downloads per month
Used in bootsector

MIT license

490KB
1K SLoC

positioned-io2

This crate allows you to specify an offset for reads and writes, without changing the current position in a file. This is similar to pread() and pwrite() in C.

The major advantages of this type of I/O are:

  • You don't need to seek before doing a random-access read or write, which is convenient.
  • Reads don't modify the file at all, so don't require mutability.

Crates.io Documentation

Fork

This is a fork of positioned-io, which seem to have become unmaintained.

Example

Read the fifth 512-byte sector of a file:

use std::fs::File;
use positioned_io2::ReadAt;

// note that file does not need to be mut
let file = File::open("tests/pi.txt")?;

// read up to 512 bytes
let mut buf = [0; 512];
let bytes_read = file.read_at(2048, &mut buf)?;

Note: If possible use the RandomAccessFile wrapper. On Windows ReadAt directly on File is very slow.

License

positioned-io2 is licensed under the MIT license.

Dependencies