Skip to main content
A newer version of this page is available. .
Tab

FileManagerFolder Class

Represents an individual folder within the ASPxFileManager control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public class FileManagerFolder :
    FileManagerItem,
    IEquatable<FileManagerFolder>

Remarks

The FileManagerFolder class implements the functionality of an individual folder within the ASPxFileManager control. Each FileManagerFolder object contains settings that define the folder’s name (FileManagerItem.Name), full name (FileManagerItem.FullName), and name relative to the root folder (FileManagerItem.RelativeName).

To determine the files and folders contained in a specific folder use the FileManagerFolder.GetFiles and FileManagerFolder.GetFolders methods, respectively. To get the folder’s parent folder, use the FileManagerFolder.Parent property.

To customize the appearance style of files, use the FileManagerStyles.Folder property.

ASPxFileManager - FileManagerFolder

Note that the FileManagerFolder class has a client-side equivalent - an object of the ASPxClientFileManagerFolder type.

Inheritance

Object
FileManagerItem
FileManagerFolder
See Also