add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,36 @@
# b2-tools
> 轻松访问 Backblaze B2 云存储的所有功能。
> 更多信息:<https://www.backblaze.com/docs/cloud-storage-command-line-tools>。
- 访问您的账户:
`b2 authorize_account {{key_id}}`
- 列出您账户中现有的存储桶:
`b2 list_buckets`
- 创建一个存储桶,提供存储桶名称和访问类型(例如 allPublic 或 allPrivate
`b2 create_bucket {{bucket_name}} {{allPublic|allPrivate}}`
- 上传文件。选择一个文件、存储桶和文件夹:
`b2 upload_file {{bucket_name}} {{path/to/file}} {{folder_name}}`
- 将源目录上传到 Backblaze B2 存储桶目标:
`b2 sync {{path/to/source_file}} {{bucket_name}}`
- 从一个存储桶复制文件到另一个存储桶:
`b2 copy-file-by-id {{path/to/source_file_id}} {{destination_bucket_name}} {{path/to/b2_file}}`
- 显示您存储桶中的文件:
`b2 ls {{bucket_name}}`
- 删除一个“文件夹”或匹配模式的一组文件:
`b2 rm {{path/to/folder|pattern}}`