Permission Flags
Read Permissions
Full read access
- Browse folder contents
- Download individual files
- Download folders as zip/tar
- See filekeys and dirkeys
- View file metadata and properties
Get-only access (no browsing)
- Download files by direct URL only
- Cannot see folder contents
- Cannot download as zip/tar
- Useful for “hotlink” scenarios
Often combined with filekeys to prevent URL guessing.
Upload-get accessSame as
g but uploaders can see their own filekeys.- Upload files
- Receive working direct link after upload
- Cannot see other users’ uploads
- Cannot browse folder
HTML-only accessSame as
g except:- Folders return their
index.htmlfile - Filekeys not required for
index.html - Useful for static website hosting
Write Permissions
Upload permission
- Upload new files
- Move/copy files into this folder
- Create new subdirectories
- Requires
rpermission to see uploaded files
Move permission
- Move files/folders from this folder to another
- Rename files within the folder
- Requires
wpermission at destination
Delete permission
- Permanently delete files
- Permanently delete folders
- Cannot be undone (unless using unpost feature)
Special Permissions
Dotfiles permissionUser can enable the option to show dotfiles (hidden files) in listings.See dotfiles configuration for more details.
- See files/folders starting with
. - Toggle visibility in settings
- Dotfiles still accessible by direct URL regardless
Admin permission
- See upload timestamps
- See uploader IP addresses
- Reload configuration
- Access control panel features
- View system information
All permissions combinedShortcut for
rwmda. (read/write/move/delete/admin/dotfiles)Permission Combinations
Common Patterns
Public Read-Only
Public Read-Only
Write-Only Drop Box
Write-Only Drop Box
User-Specific Folders
User-Specific Folders
Collaborative Workspace
Collaborative Workspace
Anonymous Upload with Links
Anonymous Upload with Links
Static Website Hosting
Static Website Hosting
Permission Precedence
User Groups
Permissions can be granted to:- Individual users:
alice,bob - Groups:
@team,@admins - Everyone:
* - Logged-in users:
@acct
Granting and Revoking
Permissions are additive within a user’s grants. A user with both
r and w can read and write.Volume Inheritance
Permissions do not inherit from parent volumes. Each volume has independent permissions./private exists (from the root volume) but cannot open it unless they have permission.
Authentication Requirements
Password Protection
Volumes require authentication if no* (everyone) permission is granted:
Mixed Access
Advanced Features
Unpost Permission
The--unpost feature allows users to delete their own recent uploads even without d permission.
Append Permission
Control who can append to existing files:Edit Permission
By default, editing files requiresrwd (read+write+delete). The --rw-edit option changes this:
Security Best Practices
Troubleshooting
User can upload but not see files
User can upload but not see files
User has
w but not r permission. Add r for visibility:User cannot move files between folders
User cannot move files between folders
Moving requires
m permission at source and w at destination:Everyone can access protected volume
Everyone can access protected volume
Check for
* in permissions. Remove to require authentication:Dotfiles not appearing
Dotfiles not appearing
User needs Then user enables
. permission AND must enable in settings:dotfiles option in the [⚙️] settings tab.