Interface IDirectoryPath
Represents an absolute or relative path to a directory.
Inherited Members
Namespace: Singulink.IO
Assembly: Singulink.IO.FileSystem.dll
Syntax
public interface IDirectoryPath : IPath, IEquatable<IPath?>
Methods
Name | Description |
---|---|
Combine(IRelativeDirectoryPath) | Combines this directory with a relative directory. |
Combine(IRelativeFilePath) | Combines this directory with a relative file. |
Combine(IRelativePath) | Combines this directory with a relative entry. |
CombineDirectory(ReadOnlySpan<char>, PathFormat, PathOptions) | Combines this directory with a relative directory path parsed using the specified format and options. |
CombineDirectory(ReadOnlySpan<char>, PathOptions) | Combines this directory with a relative directory path parsed using the specified options and this directory's path format. |
CombineFile(ReadOnlySpan<char>, PathFormat, PathOptions) | Combines this directory with a relative file path parsed using the specified format and options. |
CombineFile(ReadOnlySpan<char>, PathOptions) | Combines this directory with a relative file path parsed using the specified options and this directory's path format. |
Operators
Name | Description |
---|---|
operator +(IDirectoryPath, IRelativeDirectoryPath) | Combines a directory with a relative directory. |
operator +(IDirectoryPath, IRelativeFilePath) | Combines a directory with a relative file. |
operator +(IDirectoryPath, IRelativePath) | Combines a directory with a relative entry. |