create_file( string ) bool
Creates a new file with the specified path.
Example Usage:
create_file( string ) bool
Creates a new file with the specified path.
Example Usage:
write_file( string, string ) bool
Writes to a file with the specified path and data.
Example Usage:
read_file( string ) string
Reads from a file with the specified path.
Example Usage:
delete_file( string ) bool
Deletes a file with the specified path.
Example Usage:
create_dir( string ) bool
Creates a new directory with the specified path.
Example Usage:
delete_dir( string ) bool
Deletes a directory with the specified path.
Example Usage: