Struct FolderPath
Most functions of folders class return a value of this type. Contains folder path (string) and has operator + to append a string with backslash if need. Has implicit conversions from/to string.
public struct FolderPath
Namespace: Au.Types
Assembly: Au.dll
Constructors
Name | Description |
---|---|
FolderPath(string) |
Properties
Name | Description |
---|---|
IsNull | Returns |
Path | Returns the path string. For some folders it can be |
PathOrThrow | Returns the path string. If it is |
Methods
Name | Description |
---|---|
ToString() | Returns FolderPath.Path. |
Operators
Name | Description |
---|---|
operator +(FolderPath, string) | Calls pathname.combine.
Example: |
explicit operator FolderPath(string) | |
implicit operator string(FolderPath) |