FileManagerAccessControl.Path Property
Definition
- Namespace
- GleamTech.FileUltimate.AspNet.UI
- Assembly
- GleamTech.FileUltimate.dll
Gets or sets the relative path of a root folder where this access control will be applied to. For instance, to apply the access control to the root level, the value should be set to . To apply the access control to a subfolder named subfolder1, the value should be set to \subfolder1. This property can not be empty and should start with backslash () or forward slash (/). By default, a subfolder inherits from first parent with an access control unless there is an explicit access control for that subfolder.
You can also use these wildcards in a path:
- The ? wildcard character matches a single character.
- The * wildcard character matches zero or more characters.
- The ** wildcard character sequence matches a partial path.
For example, if you set Path="**MatchMe", this access control will appy to the folders containing MatchMe keyword in name under both root folder and under root folder's all subfolders (recursive).
public string Path { get; set; }