File Management
Master the file manager to efficiently manage your server files.
Overview
The file manager provides a web-based interface to browse, edit, upload, and manage all your server files without needing FTP software.
Navigating Files
File Browser
- Click folders to open them
- Use breadcrumb navigation at top
Quick Actions
Click the ellipses (…) next to a file or folder to show the following options:
- Rename
- Move
- Permissions
- Copy (Files only)
- Archive
- Download (Files only)
- Delete
Editing Files
In-Browser Editor
Features:
- Syntax highlighting for common formats
- Line numbers
- Search and replace (
Ctrl + F) - Auto-save drafts
- Multiple file tabs
Editing Process
- Navigate to file
- Click file name to open
- Make changes in editor
- Click Save Content button
- Restart server if needed
Uploading Files
Web Upload
For files under 1GB:
- Navigate to target folder
- Click Upload button
- Drag files or click to browse
- Wait for upload to complete
- Refresh if files don’t appear
Large Files & Uploading Multiple Files
For files over 1GB, or if you’re trying to upload an entire folder, use SFTP:
- Get credentials from Settings tab
- Use FileZilla, WinSCP, or any other SFTP client
- Connect and transfer files
Creating Files & Folders
New File
- Navigate to desired location
- Click New File button
- Enter filename with extension
- Click create
- Edit in browser
New Folder
- Click New Folder
- Enter folder name
- Click create
File Operations
Copy Files
- Click the ellipses (…) next to the file
- Select Copy
- This will create a file called
file copy.txt - Click the ellipses (…) next to the copied file
- Select Move
- Navigate to destination
- Click Move
Move Files
- Click the ellipses (…) next to the file
- Select Move
- Navigate to destination
- Click Move
Delete Files
⚠️ Warning: Deletion is permanent!
We do plan to add a Recycle Bin feature in the future, but for now, deletion is permanent.
- Click the ellipses (…) next to the file/folder
- Select Delete
- Confirm deletion
Working with Archives (.zip, .tar.gz, .tar, .7z, .rar, .gz, .bz2, .xz)
Extract Archives
Upload and extract .zip, .tar.gz, .tar, .7z, .rar, .gz, .bz2, .xz:
- Upload archive file
- Click the ellipses (…) next to the archive
- Select Unarchive
- Wait for extraction
- Delete archive if no longer needed
Create Archive
Compress files for download:
- Select the checkboxes to the left of the files/folders you want to archive
- Select Archive from the menu that appears at the bottom of the viewport
- Wait for compression
- A file called
archive2025-01-01T000000-0400.tar.gzwill be created in same directory as the files/folders you archived. (The date and time is the date and time of the archive creation)
Permissions
It is very rare that you will need to change permissions, but if you do, you can do so by following the steps below.
Understanding Permissions
Unix permissions format: rwxrwxrwx
r= read (4)w= write (2)x= execute (1)
Common values:
644- Read/write for owner, read for others755- Full for owner, read/execute for others777- Full permissions (use carefully)
Changing Permissions
- Click the ellipses (…) next to the file/folder
- Select Permissions
- Enter the numeric value you want to set the permissions to
- Click Update
Common File Locations
Minecraft Servers
/
├── backups/ # Backup files
├── logs/ # Server logs
├── mods/ # Mod files (.jar)
├── plugins/ # Plugin files (.jar, for servers running Bukkit/Spigot/Paper/etc. servers)
├── config/ # Configuration files
├── world/ # Main world data
├── banned-players.json # Banned players
├── banned-ips.json # Banned IPs
├── ops.json # Operator permissions
├── server-icon.png # Server icon
├── server.properties # Server settings
└── whitelist.json # Whitelist playersBest Practices
Before Editing
- Create backup first
- Copy original file as
.bak - Test changes gradually
File Organization
- Keep mods organized in folders
- Remove unused files regularly
- Name backups clearly
- Document custom configurations
Safety
- Never edit while server is running (configs). This is mainly because sometimes on server shutdown the server will save the configuration it had loaded while it was running, and your changes may be overwritten.
- Keep backups of working configs. This is important because if you make a mistake, you can restore to the working config.
Troubleshooting
Can’t Edit File
Possible causes:
- File too large for web editor
Solutions:
- Use SFTP for large files
Upload Failed
Common issues:
- File too large (use SFTP)
Changes Not Applied
- Ensure you clicked Save
- Restart server to apply
- Review server logs
Tips & Tricks
- Bookmark important folders - Browser bookmarks
- Multiple tabs - Edit multiple files
- Archive downloads - Download folders as zip
Next Steps
- Learn about backups
- Set up automated tasks
- Master the console