简体   繁体   中英

How to get list of Containers present in Azure using DataLakeServiceClient in python

from azure.storage.filedatalake import DataLakeServiceClient service_client = DataLakeServiceClient(account_url="{}://{}.dfs.core.windows.net".format( "https", storage_account_name), credential=storage_account_key) containers = service_client.list_containers() for c in containers: print (c.name)

But I am Getting an error like this: AttributeError: 'DataLakeServiceClient' object has no attribute 'list_containers'

service_client = DataLakeServiceClient(account_url="{}://{}.dfs.core.windows.net".format( "https", storage_account_name), credential=storage_account_key) containers = service_client.list_file_systems() for c in containers: print (c.name)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM