đFile System
These are all of the functions revolving the file system that Wave supports.
Append File
Appends content
to the file contents at path
.
Delete File
Deletes the file located at
path
.
Delete Folder
Deletes the folder located at
path
.
Get Custom Asset
Provides a content string suitable for use with GUI elements, sounds, meshes, and other assets to reference an item in the workspace folder.
Is File
Returns
true
ifpath
is a file.
Is Folder
Returns
true
ifpath
is a folder.
List Files
Returns a table of all files in
folder
.
Load File
Loads the contents of the file located at
path
as a Lua function and returns it.
Make Folder
Creates a new folder at
path
.
Read File
Returns the contents of the file located at
path
.
Write File
Writes
content
to the suppliedpath
.
Last updated