File Operations
The ServerPlane file manager supports a full set of file operations accessible through the context menu (right-click) and the toolbar. All operations execute on the remote server in real time.
Create a File
- Right-click on the background area and select New File, or use the toolbar button.
- Enter the file name in the modal that appears.
- Click Create. The file is created empty in the current directory.
Create a Folder
- Right-click on the background area and select New Folder, or use the toolbar button.
- Enter the folder name.
- Click Create.
Edit a Text File
- Click a file name or right-click and select Edit.
- The file opens in the built-in code editor with syntax highlighting (detected automatically from the file extension).
- Make your changes.
- Click Save to write the updated content back to the server.
- Click Close to exit the editor.
The editor supports common programming languages and configuration file formats.
Rename
- Right-click the file or folder and select Rename.
- Update the name in the modal.
- Click Rename to confirm.
Delete
Single Item
- Right-click the file or folder and select Delete.
- Confirm the deletion in the dialog.
Bulk Delete
- Select multiple items using Ctrl+Click or Shift+Click.
- Right-click and select Delete.
- The confirmation dialog lists all items that will be deleted.
- Click Delete to confirm. A summary shows how many items were deleted and whether any failed.
Copy and Paste
- Right-click a file or folder and select Copy (or select multiple items first, then right-click and select Copy).
- Navigate to the target directory.
- Right-click on the background and select Paste.
The original items remain in place.
Cut and Paste (Move)
- Right-click a file or folder and select Cut (or select multiple items first, then right-click and select Cut).
- Navigate to the target directory.
- Right-click on the background and select Paste.
The items are moved from their original location to the current directory.
Compress
- Right-click a file or folder and select Compress.
- A
.tar.gzarchive is created in the same directory as the original item.
For example, compressing a folder named app produces app.tar.gz.
Extract an Archive
- Right-click an archive file (
.zip,.tar,.tar.gz,.tgz,.tar.bz2,.tar.xz, or.gz) and select Extract. - The archive contents are extracted into the current directory.
Upload a File
- Right-click on the background and select Upload, or use the toolbar upload button.
- Select a file from your computer (maximum size: 10 MB).
- The file is uploaded to the current directory.
Download a File
- Right-click a file and select Download.
- The file is downloaded to your browser's default download location.
Change Permissions (chmod)
- Right-click a file or folder and select Change Permissions.
- Enter the desired permission mode in octal notation (e.g.,
755,644). - For directories, toggle the Apply Recursively option to change permissions on all contents inside the directory.
- Click Apply.
Common Permission Values
| Mode | Meaning |
|---|---|
644 |
Owner read/write, group and others read-only. Typical for files. |
755 |
Owner read/write/execute, group and others read/execute. Typical for directories and scripts. |
600 |
Owner read/write only. Typical for sensitive config files. |
777 |
Full access for everyone. Use with caution. |