đFile System Functions
These are all of the functions revolving the file system that Wave supports.
Read File:
Returns the contents of the file located at
path
.
Write File:
Writes
content
to the suppliedpath
.
Append File:
Appends content
to the file contents at path
.
Load File:
Loads the contents of the file located at
path
as a Lua function and returns it.
List Files:
Returns a table of all files in
folder
.
Is File:
Returns
true
ifpath
is a file.
Is Folder:
Returns
true
ifpath
is a folder.
Make Folder:
Creates a new folder at
path
.
Delete Folder:
Deletes the folder located at
path
.
Delete File:
Deletes the file located at
path
.
Last updated