Python按模式列出Azure Blob

时间:2018-05-25 15:08:31

标签: python azure azure-storage-blobs

使用Python Azure API我想通过模式查询blob。

例如,获取所有报告pdf'(使用Unix style path name pattern expansion):

block_blob_service.list_blobs('mycontainer', '**/reports/*.pdf')

1 个答案:

答案 0 :(得分:1)

很遗憾,你无法做到这一点。

从服务器端过滤的角度来看,您唯一能做的就是filter blobs by prefix,即过滤名称以特定值开头的blob(例如reports/)。

所有其他类型的过滤都需要在客户端进行。