Rest API 以获取 AZURE 存储中 container/directory/ 内的文件列表
Rest API to get the list of files inside the container/directory/ in AZURE storage
我有一个名为 'services' 的容器。在容器内,我有一个名为 'Test' 的目录。我们如何获取目录 test.I 中的 blob 列表很少保留测试中很少有 CSV。需要其余 api 来获取文件列表。
但是我可以使用下面的 Rest API 轻松获取容器内的项目列表
https://myaccount.blob.core.windows.net/services?restype=container&comp=list
我试过了
https://myaccount.blob.core.windows.net/services/Test?restype=directory&comp=list
但它不工作。
请帮助获取 coorect 参数值或休息 API 以查找目录中的项目列表
https://myaccount.blob.core.windows.net/services/Test?restype=directory&comp=list&prefix=Test/
文档:
https://docs.microsoft.com/en-us/rest/api/storageservices/list-blobs#uri-parameters
加个参数prefix
就可以了
我有一个名为 'services' 的容器。在容器内,我有一个名为 'Test' 的目录。我们如何获取目录 test.I 中的 blob 列表很少保留测试中很少有 CSV。需要其余 api 来获取文件列表。 但是我可以使用下面的 Rest API 轻松获取容器内的项目列表 https://myaccount.blob.core.windows.net/services?restype=container&comp=list
我试过了 https://myaccount.blob.core.windows.net/services/Test?restype=directory&comp=list 但它不工作。 请帮助获取 coorect 参数值或休息 API 以查找目录中的项目列表
https://myaccount.blob.core.windows.net/services/Test?restype=directory&comp=list&prefix=Test/
文档:
https://docs.microsoft.com/en-us/rest/api/storageservices/list-blobs#uri-parameters
加个参数prefix
就可以了