cavity 1.1.0

Create files padded with zeros. Alternatinve to macOS's mkfile.
Documentation
  • Coverage
  • 50%
    6 out of 12 items documented0 out of 6 items with examples
  • Size
  • Source code size: 7.17 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.84 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Inner-Heaven/cavity
    4 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • andoriyu

Crates.io

Cavity

Very small library to create files. It's an alternative to macOS's mkfile(8) that works on everything that has rust's std. Unlike mkfile this uses configurable chunksize and has default of 512Kb.

Installation

cavity is available on crates.io and can be included in your Cargo enabled project like this:

[dependencies]
cavity = "1.1.0"

Example

Read the "docs".

use cavity::{fill, Bytes, WriteMode};
use std::fs::File;
let mut f = File::create("wat.test").unwrap();
fill(Bytes::MegaBytes(5), None, WriteMode::FlushEvery, &mut f).unwrap();