-
Notifications
You must be signed in to change notification settings - Fork 0
/
os.para
63 lines (62 loc) · 1.69 KB
/
os.para
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
53
54
55
56
57
58
59
60
61
62
63
let os = Type.extend({
args = __intern_os_args__()
name = __intern_os_name__()
func clear(_) {
return __intern_clear__();
}
func quit(_, exit_code=0) {
return __intern_quit__(exit_code);
}
func exit(_, exit_code=0) {
return __intern_exit__(exit_code);
}
func getenv(_, key, default=null) {
return __intern_os_getenv__(key, default);
}
func putenv(_, key, value) {
return __intern_os_putenv__(key, value);
}
func unsetenv(_, key) {
return __intern_os_unsetenv__(key);
}
func chdir(_, path) {
return __intern_os_chdir__(path);
}
func getcwd(_) {
return __intern_os_getcwd__();
}
func listdir(_, path=".") {
return __intern_os_listdir__(path);
}
func mkdir(_, path, mode=511) {
return __intern_os_mkdir__(path, mode);
}
func makedirs(_, name, mode=511, exist_ok=false) {
return __intern_os_makedirs__(name, mode, exist_ok);
}
func remove(_, path) {
return __intern_os_remove__(path);
}
func removedirs(_, name) {
return __intern_os_removedirs__(name);
}
func rename(_, src, dst) {
return __intern_os_rename__(src, dst);
}
func renames(_, old, new) {
return __intern_os_renames__(old, new);
}
func replace(_, src, dst) {
return __intern_os_replace__(src, dst);
}
func rmdir(_, path) {
return __intern_os_rmdir__(path);
}
func scandir(_, path=".") {
return __intern_os_scandir__(path);
}
func get_terminal_size(_) {
let size = __intern_os_get_terminal_size__();
return IntVector2.new(size[0], size[1]);
}
});