Checks if dir given exists and is a directory before ls

pull/466/head
Henrixounez 2019-06-23 14:59:44 +02:00 committed by Alex Medvednikov
parent ec87ca37fa
commit ad5e1fd8d4
2 changed files with 13 additions and 1 deletions

View File

@ -516,7 +516,7 @@ mut args := ''
fn (c &V) v_files_from_dir(dir string) []string {
mut res := []string
if !os.file_exists(dir) {
if !os.dir_exists(dir) {
panic('$dir doesn\'t exist')
}
mut files := os.ls(dir)

12
os/os.v
View File

@ -331,6 +331,18 @@ pub fn file_exists(path string) bool {
return res
}
pub fn dir_exists(path string) bool {
res := false
if file_exists(path) {
# DIR *dir = opendir(path.str);
# res = dir != NULL;
if res {
# closedir(dir);
}
}
return res
}
// `mkdir` creates a new directory with the specified path.
pub fn mkdir(path string) {
$if windows {