Is there a way for me to specify that certain files can be deleted by a user, and others can't be deleted, in the same folder? Please note that I'm talking about FILES, and not FOLDERS.
For example:
- FolderA contains 5 files: File1, File2, File3, File4, File5
- UserA has permissions to delete File1, File3, File5, but does NOT have permissions to delete File2 and File4.
- UserA should not be able to delete File2 and File4
I've tried checking the API, and there's some information on ACL, but it applies to the folder (if the folder ACL has FileDelete as true, means that the files on that folder can be deleted).
API: http://docs.cksource.com/ckfinder_2.x_api/symbols/CKFinder.dataTypes.Acl.html
Example of ACL configuration: http://docs.cksource.com/CKFinder_2.x/Developers_Guide/ASP.NET/Configuration/Access_Control
Thanks!