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,28 @@
# aws s3 ls
> 列出 AWS S3 存储桶、文件夹(前缀)和文件(对象)。
> 更多信息:<https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3/ls.html>。
- 列出所有存储桶:
`aws s3 ls`
- 列出存储桶根目录中的文件和文件夹(`s3://` 是可选的):
`aws s3 ls s3://{{bucket_name}}`
- 列出目录下直接的文件和文件夹:
`aws s3 ls {{bucket_name}}/{{path/to/directory}}/`
- 列出存储桶中的所有文件:
`aws s3 ls --recursive {{bucket_name}}`
- 列出具有给定前缀的路径中的所有文件:
`aws s3 ls --recursive {{bucket_name}}/{{path/to/directory/}}{{prefix}}`
- 显示帮助信息:
`aws s3 ls help`