FileSystemProviderBase.GetParentFolder(String, String) Method
In This Article
Override this method to implement getting the parent folder of a file manager item.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public virtual FileManagerFolder GetParentFolder(
string childId,
string childRelativeName
)
#Parameters
Name | Type | Description |
---|---|---|
child |
String | A String value that specifies the item’s unique identifier. |
child |
String | A String value that specifies the item’s relative name. |
#Returns
Type | Description |
---|---|
File |
A File |
#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