aether file
Manage files in a running workspace. All file operations are performed over a WebSocket connection to the workspace. Alias:files
Usage
Subcommands
| Subcommand | Description |
|---|---|
list [path] | List files and directories |
read <path> | Read file contents |
write <path> | Write content to a file |
mkdir <path> | Create a directory |
delete <path> | Delete a file or directory |
rename <old> <new> | Rename or move a file |
stat <path> | Get file metadata |
aether file list
List files and directories at the given path. Defaults to the workspace root.aether file read
Read the contents of a file.| Flag | Description |
|---|---|
--encoding | File encoding (utf-8, base64). Defaults to utf-8. |
aether file write
Write content to a file. Creates the file if it does not exist, or overwrites it if it does.| Flag | Description |
|---|---|
--content | File content (required) |
--encoding | Content encoding (utf-8, base64). Defaults to utf-8. |
aether file mkdir
Create a directory. Creates parent directories as needed.aether file delete
Delete a file or directory.| Flag | Description |
|---|---|
--force | Skip confirmation prompt |