
🔍
Plugin fs
Functions for work with file system
Content
| Function | Description / comments |
|---|---|
| fs_create[<symbol name>] | Create file or dir |
| fs_remove[<symbol name>] | Remove file or dir |
| fs_rename[<symbol name>; <symbol name>] | Rename file or dir |
| fs_copy[<symbol name>; <symbol name>] | Copy file or dir |
| fs_exists[<symbol name>] | Return 1b if file exists return |
Examples:
o)load "fs";
o)fs_create `:tmp/;
o)fs_exists `:tmp/
1b
o)fs_rename[`tmp/;`tm/];
o)fs_exists `:tm/
1b
o)fs_remove `:tm/;
o)fs_exists `:tm/
0b
o)