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:
```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.
AsRef<Path>
], [fs::Metadata
] and [std's FileType
].libc::mode_t
] (via the feature "mode-t-conversion"
).Issues and PRs are welcome.
License: MIT