seafile_upload_file
Upload binary files to Seafile cloud storage by providing content as base64-encoded data. Specify repository ID and destination path for file placement.
Instructions
Upload a binary file to Seafile.
Use this for uploading binary files by providing the content as base64.
For text files, prefer seafile_write_file instead.
Args:
repo_id: The library/repository ID.
path: The path where the file should be uploaded.
base64_content: The file content encoded as base64.
Returns:
OperationResult indicating success or failure.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo_id | Yes | Library/repository ID | |
| path | Yes | File path within the library | |
| base64_content | Yes | Base64 encoded file content |