which-fs 0.0.4

Give me a path, I'll tell you the filesystem it's on
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# which-fs-rs

Give me a path, I'll tell you the filesystem it's on

Works on Windows, Linux, and macOS

> [!WARNING]  
> This library only supports some popular filesystems (see [here]https://docs.rs/which-fs/latest/which_fs/enum.FsKind.html)

### Usage

```rust
let path = Path::new("/Volumes/My Volume/My Folder");
let fs_kind = which_fs::detect(path).unwrap();
println!("{} is on {}", path.display(), fs_kind);
```