(path: &str, include_hidden: bool)
| 182 | } |
| 183 | |
| 184 | pub fn get_recursive_files(path: &str, include_hidden: bool) -> ResultType<Vec<FileEntry>> { |
| 185 | read_dir_recursive(&get_path(path), &get_path(""), include_hidden) |
| 186 | } |
| 187 | |
| 188 | #[inline] |
| 189 | pub fn is_file_exists(file_path: &str) -> bool { |
no test coverage detected