Filesystem
The filesystem functions allow read and write access to a designated folder in the directory of the executor, typically called workspace.
readfile
function readfile(path: string): stringParameters
Example
writefile("file.txt", "Hello, world!")
print(readfile("file.txt")) --> Hello, world!listfiles
function listfiles(path: string): {string}Parameters
Example
writefile
Parameters
Example
makefolder
Parameters
Example
appendfile
Parameters
Example
isfile
Parameters
Example
isfolder
Parameters
Example
delfile
Parameters
Example
delfolder
Parameters
Example
loadfile
Parameters
Example
dofile
🔎 Note
Parameters
Example
Last updated