Crate dir_diff

Source
Expand description

Determine if two directories have different contents.

For now, only one function exists: are they different, or not? In the future, more functionality to actually determine the difference may be added.

§Examples

extern crate dir_diff;

assert!(dir_diff::is_different("dir/a", "dir/b").unwrap());

Enums§

Error
The various errors that can happen when diffing two directories

Functions§

is_different
Are the contents of two directories different?