revert file_types to lowercase (#623)

* revert file_types to lowercase

* fix test
This commit is contained in:
Darren Schroeder
2021-12-29 21:16:50 -06:00
committed by GitHub
parent 7d1d6f075c
commit 7faa4fbff4
2 changed files with 17 additions and 17 deletions

View File

@ -217,24 +217,24 @@ use std::path::{Path, PathBuf};
pub fn get_file_type(md: &std::fs::Metadata) -> &str {
let ft = md.file_type();
let mut file_type = "Unknown";
let mut file_type = "unknown";
if ft.is_dir() {
file_type = "Dir";
file_type = "dir";
} else if ft.is_file() {
file_type = "File";
file_type = "file";
} else if ft.is_symlink() {
file_type = "Symlink";
file_type = "symlink";
} else {
#[cfg(unix)]
{
if ft.is_block_device() {
file_type = "Block device";
file_type = "block device";
} else if ft.is_char_device() {
file_type = "Char device";
file_type = "char device";
} else if ft.is_fifo() {
file_type = "Pipe";
file_type = "pipe";
} else if ft.is_socket() {
file_type = "Socket";
file_type = "socket";
}
}
}