You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
3781 lines
44 KiB
3781 lines
44 KiB
## Default Permission
|
|
|
|
This set of permissions describes the what kind of
|
|
file system access the `fs` plugin has enabled or denied by default.
|
|
|
|
#### Granted Permissions
|
|
|
|
This default permission set enables read access to the
|
|
application specific directories (AppConfig, AppData, AppLocalData, AppCache,
|
|
AppLog) and all files and sub directories created in it.
|
|
The location of these directories depends on the operating system,
|
|
where the application is run.
|
|
|
|
In general these directories need to be manually created
|
|
by the application at runtime, before accessing files or folders
|
|
in it is possible.
|
|
|
|
Therefore, it is also allowed to create all of these folders via
|
|
the `mkdir` command.
|
|
|
|
#### Denied Permissions
|
|
|
|
This default permission set prevents access to critical components
|
|
of the Tauri application by default.
|
|
On Windows the webview data folder access is denied.
|
|
|
|
|
|
#### This default permission set includes the following:
|
|
|
|
- `create-app-specific-dirs`
|
|
- `read-app-specific-dirs-recursive`
|
|
- `deny-default`
|
|
|
|
## Permission Table
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Identifier</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-app-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete application folders, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-app-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete application folders, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-app-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the application folders.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-app-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the application folders.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-app-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the application folders, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-app-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the application folders, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-app-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete application folders, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-app`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the application folders.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-app-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the application directories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appcache-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$APPCACHE` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appcache-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$APPCACHE` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appcache-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$APPCACHE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appcache-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$APPCACHE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appcache-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appcache-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$APPCACHE` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-appcache-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$APPCACHE` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-appcache`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$APPCACHE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-appcache-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$APPCACHE`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appconfig-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$APPCONFIG` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appconfig-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$APPCONFIG` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appconfig-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$APPCONFIG` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appconfig-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$APPCONFIG` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appconfig-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appconfig-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$APPCONFIG` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-appconfig-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$APPCONFIG` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-appconfig`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$APPCONFIG` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-appconfig-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$APPCONFIG`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appdata-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$APPDATA` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appdata-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$APPDATA` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appdata-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$APPDATA` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appdata-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$APPDATA` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appdata-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-appdata-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$APPDATA` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-appdata-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$APPDATA` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-appdata`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$APPDATA` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-appdata-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$APPDATA`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-applocaldata-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$APPLOCALDATA` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-applocaldata-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$APPLOCALDATA` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-applocaldata-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$APPLOCALDATA` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-applocaldata-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$APPLOCALDATA` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-applocaldata-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-applocaldata-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$APPLOCALDATA` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-applocaldata-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$APPLOCALDATA` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-applocaldata`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$APPLOCALDATA` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-applocaldata-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$APPLOCALDATA`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-applog-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$APPLOG` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-applog-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$APPLOG` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-applog-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$APPLOG` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-applog-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$APPLOG` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-applog-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-applog-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$APPLOG` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-applog-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$APPLOG` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-applog`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$APPLOG` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-applog-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$APPLOG`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-audio-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$AUDIO` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-audio-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$AUDIO` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-audio-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$AUDIO` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-audio-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$AUDIO` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-audio-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-audio-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$AUDIO` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-audio-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$AUDIO` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-audio`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$AUDIO` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-audio-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$AUDIO`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-cache-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$CACHE` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-cache-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$CACHE` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-cache-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$CACHE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-cache-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$CACHE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-cache-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-cache-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$CACHE` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-cache-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$CACHE` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-cache`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$CACHE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-cache-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$CACHE`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-config-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$CONFIG` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-config-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$CONFIG` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-config-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$CONFIG` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-config-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$CONFIG` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-config-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-config-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$CONFIG` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-config-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$CONFIG` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-config`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$CONFIG` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-config-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$CONFIG`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-data-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$DATA` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-data-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$DATA` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-data-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$DATA` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-data-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$DATA` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-data-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$DATA` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-data-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$DATA` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-data-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$DATA` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-data`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$DATA` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-data-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$DATA`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-desktop-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$DESKTOP` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-desktop-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$DESKTOP` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-desktop-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$DESKTOP` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-desktop-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$DESKTOP` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-desktop-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-desktop-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$DESKTOP` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-desktop-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$DESKTOP` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-desktop`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$DESKTOP` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-desktop-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$DESKTOP`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-document-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$DOCUMENT` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-document-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$DOCUMENT` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-document-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$DOCUMENT` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-document-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$DOCUMENT` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-document-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-document-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$DOCUMENT` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-document-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$DOCUMENT` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-document`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$DOCUMENT` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-document-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$DOCUMENT`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-download-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$DOWNLOAD` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-download-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$DOWNLOAD` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-download-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$DOWNLOAD` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-download-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$DOWNLOAD` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-download-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-download-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$DOWNLOAD` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-download-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$DOWNLOAD` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-download`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$DOWNLOAD` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-download-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$DOWNLOAD`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-exe-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$EXE` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-exe-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$EXE` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-exe-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$EXE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-exe-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$EXE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-exe-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$EXE` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-exe-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$EXE` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-exe-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$EXE` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-exe`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$EXE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-exe-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$EXE`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-font-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$FONT` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-font-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$FONT` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-font-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$FONT` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-font-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$FONT` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-font-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$FONT` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-font-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$FONT` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-font-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$FONT` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-font`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$FONT` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-font-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$FONT`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-home-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$HOME` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-home-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$HOME` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-home-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$HOME` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-home-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$HOME` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-home-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$HOME` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-home-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$HOME` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-home-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$HOME` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-home`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$HOME` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-home-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$HOME`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-localdata-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$LOCALDATA` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-localdata-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$LOCALDATA` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-localdata-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$LOCALDATA` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-localdata-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$LOCALDATA` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-localdata-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-localdata-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$LOCALDATA` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-localdata-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$LOCALDATA` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-localdata`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$LOCALDATA` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-localdata-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$LOCALDATA`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-log-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$LOG` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-log-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$LOG` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-log-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$LOG` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-log-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$LOG` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-log-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$LOG` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-log-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$LOG` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-log-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$LOG` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-log`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$LOG` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-log-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$LOG`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-picture-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$PICTURE` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-picture-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$PICTURE` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-picture-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$PICTURE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-picture-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$PICTURE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-picture-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-picture-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$PICTURE` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-picture-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$PICTURE` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-picture`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$PICTURE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-picture-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$PICTURE`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-public-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$PUBLIC` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-public-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$PUBLIC` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-public-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$PUBLIC` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-public-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$PUBLIC` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-public-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-public-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$PUBLIC` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-public-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$PUBLIC` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-public`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$PUBLIC` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-public-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$PUBLIC`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-resource-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$RESOURCE` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-resource-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$RESOURCE` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-resource-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$RESOURCE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-resource-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$RESOURCE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-resource-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-resource-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$RESOURCE` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-resource-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$RESOURCE` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-resource`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$RESOURCE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-resource-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$RESOURCE`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-runtime-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$RUNTIME` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-runtime-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$RUNTIME` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-runtime-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$RUNTIME` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-runtime-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$RUNTIME` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-runtime-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-runtime-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$RUNTIME` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-runtime-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$RUNTIME` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-runtime`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$RUNTIME` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-runtime-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$RUNTIME`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-temp-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$TEMP` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-temp-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$TEMP` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-temp-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$TEMP` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-temp-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$TEMP` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-temp-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-temp-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$TEMP` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-temp-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$TEMP` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-temp`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$TEMP` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-temp-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$TEMP`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-template-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$TEMPLATE` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-template-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$TEMPLATE` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-template-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$TEMPLATE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-template-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$TEMPLATE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-template-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-template-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$TEMPLATE` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-template-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$TEMPLATE` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-template`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$TEMPLATE` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-template-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$TEMPLATE`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-video-read-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to the complete `$VIDEO` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-video-write-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive write access to the complete `$VIDEO` folder, files and subdirectories.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-video-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to the `$VIDEO` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-video-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive write access to the `$VIDEO` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-video-meta-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows full recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-video-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This allows non-recursive read access to metadata of the `$VIDEO` folder, including file listing and statistics.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-video-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits recursive access to the complete `$VIDEO` folder, including sub directories and files.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-video`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits access to all files and list content of top level directories in the `$VIDEO` folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope-video-index`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This scope permits to list all files and folders in the `$VIDEO`folder.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-copy-file`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the copy_file command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-copy-file`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the copy_file command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-create`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the create command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-create`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the create command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-exists`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the exists command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-exists`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the exists command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-fstat`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the fstat command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-fstat`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the fstat command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-ftruncate`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the ftruncate command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-ftruncate`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the ftruncate command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-lstat`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the lstat command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-lstat`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the lstat command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-mkdir`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the mkdir command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-mkdir`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the mkdir command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-open`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the open command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-open`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the open command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the read command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-read`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the read command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-read-dir`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the read_dir command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-read-dir`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the read_dir command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-read-file`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the read_file command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-read-file`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the read_file command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-read-text-file`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the read_text_file command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-read-text-file`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the read_text_file command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-read-text-file-lines`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the read_text_file_lines command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-read-text-file-lines`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the read_text_file_lines command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-read-text-file-lines-next`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the read_text_file_lines_next command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-read-text-file-lines-next`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the read_text_file_lines_next command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-remove`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the remove command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-remove`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the remove command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-rename`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the rename command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-rename`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the rename command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-seek`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the seek command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-seek`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the seek command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-size`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the size command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-size`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the size command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-stat`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the stat command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-stat`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the stat command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-truncate`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the truncate command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-truncate`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the truncate command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-unwatch`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the unwatch command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-unwatch`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the unwatch command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-watch`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the watch command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-watch`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the watch command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the write command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the write command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-write-file`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the write_file command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-write-file`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the write_file command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:allow-write-text-file`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the write_text_file command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-write-text-file`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the write_text_file command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:create-app-specific-dirs`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This permissions allows to create the application specific directories.
|
|
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-default`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This denies access to dangerous Tauri relevant files and folders by default.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-webview-data-linux`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This denies read access to the
|
|
`$APPLOCALDATA` folder on linux as the webview data and configuration values are stored here.
|
|
Allowing access can lead to sensitive information disclosure and should be well considered.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:deny-webview-data-windows`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This denies read access to the
|
|
`$APPLOCALDATA/EBWebView` folder on windows as the webview data and configuration values are stored here.
|
|
Allowing access can lead to sensitive information disclosure and should be well considered.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:read-all`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This enables all read related commands without any pre-configured accessible paths.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:read-app-specific-dirs-recursive`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This permission allows recursive read functionality on the application
|
|
specific base directories.
|
|
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:read-dirs`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This enables directory read and file metadata related commands without any pre-configured accessible paths.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:read-files`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This enables file read related commands without any pre-configured accessible paths.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:read-meta`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This enables all index or metadata related commands without any pre-configured accessible paths.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:scope`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
An empty permission you can use to modify the global scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:write-all`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This enables all write related commands without any pre-configured accessible paths.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`fs:write-files`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
This enables all file write related commands without any pre-configured accessible paths.
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|