Hilbish/docs/fs.txt

11 lines
300 B
Plaintext
Raw Normal View History

2022-04-23 04:01:54 +00:00
abs(path) > Gives an absolute version of `path`.
2021-10-16 19:38:49 +00:00
cd(dir) > Changes directory to `dir`
mkdir(name, recursive) > Makes a directory called `name`. If `recursive` is true, it will create its parent directories.
readdir(dir) > Returns a table of files in `dir`
stat(path) > Returns info about `path`
2022-02-25 22:00:39 +00:00