Interface IFolder
Namespace: ImageVault.Common.Lib.IO
Assembly: ImageVault.Common.dll
Syntax
public interface IFolder
Properties
Exists
Declaration
bool Exists { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
GetFiles(String)
Declaration
IList<IFolderItem> GetFiles(string pattern)
Parameters
Type | Name | Description |
---|---|---|
System.String | pattern |
Returns
Type | Description |
---|---|
System.Collections.Generic.IList<IFolderItem> |
GetSubFolder(String)
Gets a subfolder
Declaration
IFolder GetSubFolder(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
Returns
Type | Description |
---|---|
IFolder |