mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
Checks if dir given exists and is a directory before ls
This commit is contained in:

committed by
Alex Medvednikov

parent
ec87ca37fa
commit
ad5e1fd8d4
@ -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)
|
||||
|
Reference in New Issue
Block a user