v/vlib/os/os_nix.v

58 lines
986 B
V
Raw Normal View History

module os
2019-07-01 17:04:09 +02:00
#include <dirent.h>
#include <unistd.h>
2019-07-16 01:57:03 +02:00
const (
PathSeparator = '/'
)
2019-08-16 14:05:11 +02:00
// get_error_msg return error code representation in string.
pub fn get_error_msg(code int) string {
_ptr_text := C.strerror(code) // voidptr?
if _ptr_text == 0 {
return ''
}
return tos(_ptr_text, C.strlen(_ptr_text))
2019-07-29 18:21:36 +02:00
}
2019-08-16 14:05:11 +02:00
pub fn ls(path string) []string {
mut res := []string
dir := C.opendir(path.str)
2019-08-16 14:05:11 +02:00
if isnil(dir) {
println('ls() couldnt open dir "$path"')
print_c_errno()
return res
}
mut ent := &C.dirent{!}
for {
ent = C.readdir(dir)
if isnil(ent) {
break
}
name := tos_clone(ent.d_name)
if name != '.' && name != '..' && name != '' {
res << name
}
}
C.closedir(dir)
return res
}
2019-08-17 15:17:43 +02:00
pub fn dir_exists(path string) bool {
dir := C.opendir(path.str)
res := !isnil(dir)
if res {
C.closedir(dir)
}
return res
}
// mkdir creates a new directory with the specified path.
pub fn mkdir(path string) {
C.mkdir(path.str, 511)// S_IRWXU | S_IRWXG | S_IRWXO
}