FileSystem

A file system with read/write access.

Members

Enums

create
anonymousenum create

File creation flags.

read
anonymousenum read

File access flags.

Functions

createDir
bool createDir(string path, bool recursive)

Create a new directory.

openForIO
IOStream openForIO(string filename, uint creationFlags)

Open a file for input & output.

openForOutput
OutputStream openForOutput(string filename, uint creationFlags)

Open a file for output.

remove
bool remove(string path, bool recursive)

Permanently delete a file or directory.

Inherited Members

From ReadOnlyFileSystem

stat
bool stat(string filename, FileStat stat)

Get file or directory stats.

openForInput
InputStream openForInput(string filename)

Open a file for input.

openDir
Directory openDir(string path)

Open a directory.

Meta