file-engine 1.1.1

Async, cross-platform file operations engine for desktop apps and developer tools: copy, move, sync, watch, and compress files with progress reporting and cancellation.
Documentation
1
2
3
4
5
6
7
8
9
10
mod fs_caps;
mod scan;
mod validate;
mod workload;

pub(crate) use fs_caps::{probe as probe_fs_caps, FilesystemCapabilities};
pub(crate) use scan::scan;
pub(crate) use validate::validate;
pub use scan::DEFAULT_SMALL_FILE_THRESHOLD;
pub use workload::{DirEntry, Entry, Workload};