Structs§
- Directory
- VFS (Virtual File System) helper struct for a directory.
Opening or creating a directory will give you a
Result<Directory>. You can call it’s impl functions to interact with it.
Functions§
- open_
dir - Opens or creates a
Directoryat path. If trying to create an existingDirectory, will just give you the path. - remove_
dir - Removes a dir at path, errors if path not found or path is not a
Directory.