FileSystem
Reading and writing files inside the executor workspace directory.
Available Functions
| Function | Description |
|---|---|
| readfile | Read an existing file from the 'workspace' directory. |
| writefile | Write a file to the 'workspace' directory. |
| appendfile | Append an already existing file's contents from workspace. |
| listfiles | Returns an array with the list of files in the specified directory. |
| isfile | Checks if specified 'path' is a file. |
| isfolder | Checks if specified 'path' is a folder. |
| makefolder | Creates a folder in the specified 'path'. |
| delfile | Deletes the file from the specified 'path'. |
| delfolder | Deletes the folder from the specified 'path'. |
| loadfile | Loadstring's the file specified and returning its chunk |
| dofile | Attemps to execute contents from 'file'. |