reflink-copy

Crates.ioreflink-copy
lib.rsreflink-copy
version
sourcesrc
created_at2023-07-10 06:23:26.092502+00
updated_at2025-03-19 09:02:24.227458+00
descriptioncopy-on-write mechanism on supported file systems
homepagehttps://github.com/cargo-bins/reflink-copy
repositoryhttps://github.com/cargo-bins/reflink-copy
max_upload_size
id912586
Cargo.toml error:TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
FĂ©lix Saparelli (passcod)

documentation

https://docs.rs/reflink-copy

README

reflink-copy

Build

Cross-platform(!) COW reflink copy of files

Some file systems implement COW (copy on write) functionality in order to speed up file copies. On a high level, the new file does not actually get copied, but shares the same on-disk data with the source file. As soon as one of the files is modified, the actual copying is done by the underlying OS.

This library supports Linux, Android, OSX, ios and Windows. As soon as other OS support the functionality, support will be added. For implementation details, visit the docs.

Commit count: 102

cargo fmt