Skip to main content
Tab

FileManagerException.Error Property

Gets the error that caused the current exception.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public FileManagerErrors Error { get; }

Property Value

Type Description
FileManagerErrors

One of the FileManagerErrors enumeration values.

Available values:

Show 15 items
Name Description
FileNotFound

The specified file is not found.

FolderNotFound

The specified folder is not found.

AccessDenied

Access is denied.

UnspecifiedIO

Unspecified IO error occurs.

Unspecified

Unspecified error occurs.

EmptyName

The file/folder name is empty.

CanceledOperation

The operation was canceled.

InvalidSymbols

The specified name contains invalid characters.

WrongExtension

The specified file extension is not allowed.

UsedByAnotherProcess

The file/folder is being used by another process.

AlreadyExists

The specified file/folder already exists.

AccessProhibited

Access is prohibited.

CloudAccessFailed

Failed to access a cloud service.

PathToLong

The specified file/folder name of the full name is too long.

WrongIdPathLength

The number of directories in relativeName is not equal to the idPath array length.

Remarks

Use the Error property to obtain the error that led to the current exception.

See Also