Interface IReadOnlyDirectory
Represents a readonly view over the root of a Directory, where each file that is access through a directory is associated with a GUID in the directory's manifest.
When files are moved between IDirectories, the files GUID is preserved. Thus, metadata can be preserved throughout.
Namespace: Snowflake.Filesystem
Assembly: Snowflake.Framework.Primitives.dll
Syntax
public interface IReadOnlyDirectory
Properties
Name
Gets the name of the directory
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System. |
RootedPath
Gets the contextual path of the directory, relative to the root of the directory provider context.
For example, with paths produced by IGame
Declaration
string RootedPath { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
ContainsDirectory(String)
Whether or not this directory contains directory as a direct child.
full path, this will truncate the path using System.
Declaration
bool ContainsDirectory(string directory)
Parameters
Type | Name | Description |
---|---|---|
System. |
directory | The name of the directory to check. |
Returns
Type | Description |
---|---|
System. |
Whether or not this directory contains the given directory. |
ContainsFile(String)
Whether or not this directory contains a file in its manifest. If provided a
full path, this will truncate the path using System.
Declaration
bool ContainsFile(string file)
Parameters
Type | Name | Description |
---|---|---|
System. |
file | The name of the file to check. |
Returns
Type | Description |
---|---|
System. |
Whether or not this directory contains the given file. |
EnumerateDirectories()
Enumerates all direct child directories of this IDirectory.
Declaration
IEnumerable<IReadOnlyDirectory> EnumerateDirectories()
Returns
Type | Description |
---|---|
System. |
All direct children directories. |
EnumerateFiles()
Enumerates all files in this directory,
Declaration
IEnumerable<IReadOnlyFile> EnumerateFiles()
Returns
Type | Description |
---|---|
System. |
All direct children files. |
EnumerateFilesRecursive()
Recursively enumerates all files that are contained in this directory.
This method is usually implemented as a Breadth-first search, but no order is guaranteed.
Declaration
IEnumerable<IReadOnlyFile> EnumerateFilesRecursive()
Returns
Type | Description |
---|---|
System. |
All files contained within this directory, including descendant subfolders. |
OpenDirectory(String)
Opens an existing descendant directory with the given name. If the directory does not exist, throws IOException. You can open a nested directory using '/' as the path separator, and it will be created relative to this current directory.
Declaration
IReadOnlyDirectory OpenDirectory(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name of the existing directory |
Returns
Type | Description |
---|---|
IRead |
The directory if it exists, or null if it does not. |
OpenDirectory(String, Boolean)
Opens an existing descendant directory with the given name. If the directory does not exist, throws IOException. You can open a nested directory using '/' as the path separator, and it will be created relative to this current directory.
Declaration
IReadOnlyDirectory OpenDirectory(string name, bool createIfNotExists)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name of the existing directory |
System. |
createIfNotExists | If the directory does not exist, will create the directory. |
Returns
Type | Description |
---|---|
IRead |
The directory if it exists, or null if it does not. |
OpenFile(String)
Opens a file if it exists. If the file does not exist, will throw an FileNotFoundException.
Unlike Open
Instead, use Open
Keep in mind this does not actually create a file on the underlying file system.
However, you can use Open
Declaration
IReadOnlyFile OpenFile(string file)
Parameters
Type | Name | Description |
---|---|---|
System. |
file | The name of the file. If this is a path, will be truncated with System. |
Returns
Type | Description |
---|---|
IRead |
An object that associates a given file with a with a unique System. |
OpenFile(String, Boolean)
Opens a file if it exists.
Unlike Open
Instead, use Open
Keep in mind this does not actually create a file on the underlying file system.
However, you can use Open
Declaration
IReadOnlyFile OpenFile(string file, bool createIfNotExists)
Parameters
Type | Name | Description |
---|---|---|
System. |
file | The name of the file. If this is a path, will be truncated with System. |
System. |
createIfNotExists | If true, then the handle will be created for the file if it does not exists. No actual file will be created but the filename will receive an entry in the manifest. |
Returns
Type | Description |
---|---|
IRead |
An object that associates a given file with a with a unique System. |
UnsafeGetPath()
Gets the underlying System.
This is very rarely necessary, and most IO tasks can be done efficiently and safely using the provided API. Manipulating the underlying file system will potentially desync the manifest, and cause loss of associated metadata.
Declaration
[Obsolete("Avoid accessing the underlying file path, and use the object methods instead.")]
DirectoryInfo UnsafeGetPath()
Returns
Type | Description |
---|---|
System. |
The underlying System. |