FileSystemProviderBase.GetParentFolder(String, String) Method
Override this method to implement getting the parent folder of a file manager item.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v26.1.dll
Declaration
public virtual FileManagerFolder GetParentFolder(
string childId,
string childRelativeName
)
Parameters
| Name | Type | Description |
|---|---|---|
| childId | String | A String value that specifies the item’s unique identifier. |
| childRelativeName | String | A String value that specifies the item’s relative name. |
Returns
| Type | Description |
|---|---|
| FileManagerFolder | A FileManagerFolder object that is the folder containing the specified item. |
Remarks
If you create a custom file system provider inherited from the FileSystemProviderBase class, you can override the GetParentFolder method to get a file manager item‘s parent folder.
See Also