PhysicalFileSystemProvider.GetRelativeFolderPath(FileManagerFolder, IUrlResolutionService) Method
Implements getting a relative folder path.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
public override string GetRelativeFolderPath(
FileManagerFolder folder,
IUrlResolutionService rs
)
Parameters
Name | Type | Description |
---|---|---|
folder | FileManagerFolder | A FileManagerFolder object that is the processed folder. |
rs | IUrlResolutionService | An object that implements the IUrlResolutionService interface. |
Returns
Type | Description |
---|---|
String | A String value specifying the relative folder path. |
Remarks
The GetRelativeFolderPath method implements a relative folder path when the default PhysicalFileSystemProvider is used.
If you create a custom file system provider inherited from the PhysicalFileSystemProvider class, you can override the GetRelativeFolderPath method to perform any custom actions.
See Also