Basic filesystem class. Most filesystems should extend this class, as it provides default implementations for a handful of methods.
Create the file at path p with the given mode. Then, open it with the given flag.
Opens the file at path p with the given flag. The file must exist.
The path to open.
The flag to use when opening the file.
A File object corresponding to the opened file.
Generated using TypeDoc
Basic filesystem class. Most filesystems should extend this class, as it provides default implementations for a handful of methods.