filetypeenum

Crates.io Docs.rs License

An enum with a variant for each file type.

rust pub enum FileType { Regular, Directory, Symlink, BlockDevice, // unix only CharDevice, // unix only Fifo, // unix only Socket, // unix only }

If you don't need an enum, check these methods from std instead:

Example

```rust use filetypeenum::FileType; use std::io;

fn main() -> io::Result<()> { let filetype = FileType::frompath("/tmp")?;

println!("There's a {} at /tmp", file_type);
// Out:  "There's a directory at /tmp"

Ok(())

} ```

Note that the [FileType::from_path] follows symlinks and [FileType::from_symlink_path] does not.

Conversions

Contributing

Issues and PRs are welcome.

License: MIT