1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
use dirs;
use std::{fs, path::Path, string::String, vec::Vec};
pub fn return_directory(given: String) -> Vec<String> {
let trying_path = if given.is_empty() {
dirs::home_dir()
} else {
Path::new(&given).canonicalize().ok()
};
match trying_path {
Some(try_as_dir) => {
if let Ok(good_dir) = fs::read_dir(&try_as_dir) {
let mut return_vec = vec![];
if let Some(parent) = try_as_dir.parent() {
if let Some(parent_unicode_str) = parent.to_str() {
return_vec.push(parent_unicode_str.to_string());
}
}
for entry in good_dir {
if entry.is_err() {
continue;
}
let entry = entry.unwrap();
if entry.file_name().to_str().unwrap_or("").starts_with(".") {
continue;
}
let entry = entry.path();
if entry.is_dir() {
if let Some(unicode_str) = entry.to_str() {
return_vec.push(unicode_str.to_string());
}
}
}
return_vec
} else {
error!("Path '{:?}' was no dir!", &try_as_dir);
vec![]
}
}
None => {
error!("Path '{:?}' was not good!", given);
vec![]
}
}
}