reflink

Crates.ioreflink
lib.rsreflink
version0.1.3
sourcesrc
created_at2018-08-10 11:53:02.787816
updated_at2019-04-02 14:21:52.871829
descriptioncopy-on-write mechanism on supported file systems
homepagehttps://github.com/nicokoch/reflink
repositoryhttps://github.com/nicokoch/reflink
max_upload_size
id78660
size18,472
Nicolas Koch (nicokoch)

documentation

https://docs.rs/reflink/*/reflink/

README

reflink

Build Status

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: 40

cargo fmt