jQuery FileManager - permissions

Specifies actions that a user is allowed to perform on files and folders.

Type:

Object

View Demo

jQuery
JavaScript
$(function () {
    $("#file-manager").dxFileManager({
        permissions: {
            create: true,
            copy: true,
            move: true,
            remove: true,
            rename: true
        },
        // ...
    });
});

copy

Specifies whether a user is allowed to copy files and folders.

Type:

Boolean

Default Value: false

create

Specifies whether a user is allowed to create files and folders.

Type:

Boolean

Default Value: false

delete

Specifies whether a user is allowed to delete files and folders.

Type:

Boolean

Default Value: false

download

Specifies whether a user is allowed to download files.

Type:

Boolean

Default Value: false

move

Specifies whether a user is allowed to move files and folders.

Type:

Boolean

Default Value: false

rename

Specifies whether a user is allowed to rename files and folders.

Type:

Boolean

Default Value: false

upload

Specifies whether a user is allowed to upload files.

Type:

Boolean

Default Value: false