fsort is a crate to sort files in a fast, OS-independent and 'rusty' way.
```rust use std::fs::File; use std::path::PathBuf; use fsort::criterion::{FileName, FileSize}; use fsort::file_collection::{FileCollection, DynamicCollection};
fn main() {
// Create temporal files let mut s1 = std::env::tempdir(); let mut s2 = std::env::tempdir(); s1.push("S1.tmp"); s2.push("S2.tmp"); File::create(&s1).unwrap().setlen(10); File::create(&s2).unwrap().setlen(5);
// Inserts files into collection
let mut collection = DynamicCollection::new::
// Sort files by name and iterate over the paths let mut itername = collection.pathiter(); asserteq!(s1, itername.next().unwrap()); asserteq!(s2, itername.next().unwrap()); asserteq!(None, itername.next());
// Change sort criterion and iterate again
collection.setcriterion::
Christopher Gundler (c.gundler@mail.de)
Licensed under either of * Apache License, Version 2.0, (http://www.apache.org/licenses/LICENSE-2.0) * MIT license (http://opensource.org/licenses/MIT) at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.