IPWorks Cloud 2020 JavaScript Edition

Questions / Feedback?

UpdatePermission Method

Updates the permission from the Permission* properties.

Syntax

async sharefile.updatePermission(index : number, recursive : boolean): Promise<void>

Remarks

The permission at Index in the Permission* properties will be updated.

The following properties can be updated from the Permission* properties:

  • CanDelete
  • CanDownload
  • CanManagePermissions
  • CanUpload
  • CanView
  • NotifyOnDownload
  • NotifyOnUpload

// Updates permission so that the user does not have permission to download from the folder.
shareFile.Permissions[1].CanDownload = false;
shareFile.UpdatePermission(1, true);

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 JavaScript Edition - Version 20.0 [Build 8265]