I'm facing a problem with some items in my List. I want to have an Huge document Library (thousands of files in folders + GB of files) and I want to have different permissions on the files.
I want (by default) that everything is editable but to stop it whenever I want it.
Suppose there is fileA that I want to set it as "for groupA only". Programmatically I can brake inheritance on it and put on it the permissions I need.
This is ok but creates a new ACL for this element... Supponing a need to set fileB as "for GroupA only" i must brake again and do the same action.
This action create 2 different ACL which makes my system "slower"... There is a way to crate an ACL like "for groupA only" and assign it to fileA, fileB and so on without decrease perfromance? Or the only way is to create a folder with "groupA only access" and put the files in it?
Thank you very much!!