File Manager
Upload, download, browse, and delete files inside your running service containers. Works with any service type -- especially useful for providing context files to OpenClaw AI assistants.
Dashboard
Navigate to your service → Files tab in the sidebar. From there you can:
- Browse directories with breadcrumb navigation
- Upload files up to 50MB via drag-and-drop or file picker
- Download any file with one click
- Create new folders
- Delete files (restricted to
/workspace)
API
| Method | Endpoint | Description |
|---|---|---|
GET | /api/v1/services/:id/files?path=/workspace | List files |
POST | /api/v1/services/:id/files | Upload (multipart) |
GET | /api/v1/services/:id/files/download?path=... | Download |
DELETE | /api/v1/services/:id/files?path=... | Delete file |
POST | /api/v1/services/:id/files/mkdir | Create directory |
OpenClaw Integration
OpenClaw instances have a /workspace/uploads directory by default. Upload documents, datasets, or config files through the Files tab -- your AI assistant can read them immediately. No redeploy needed.