Filter out OS junk files like .DS_Store and Thumbs.db. A Rust implementation of https://github.com/sindresorhus/junk
```rust use junk;
junk::is(&path); // Check if filename is junk. junk::not(&path); // Check if filename is not junk. ```