Skip to main content
Tab

AmazonFileSystemProvider.MoveFile(FileManagerFile, FileManagerFolder) Method

Implements file moving.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public override void MoveFile(
    FileManagerFile file,
    FileManagerFolder newParentFolder
)

Parameters

Name Type Description
file FileManagerFile

A FileManagerFile object that is the moved file.

newParentFolder FileManagerFolder

A FileManagerFolder object that is the folder where the current file is being moved.

Remarks

The MoveFile method implements moving a file when the AmazonFileSystemProvider is used.

If you create a custom file system provider inherited from the AmazonFileSystemProvider class, you can override the MoveFile method to perform any custom actions when an end-user moves a file.

See Also