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
///! A helper to make local computer browsing of file paths possible
///! on smarter devices a dialog would do it ....
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![];

                // add parent if possible, which js can turn into ".."
                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();
                    // filter out ".dirs"
                    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![]
        }
    }
}