azure-files

How to download entire directory from azure file share

How to download entire directory from azure file share Question: Not able to download entire directory from azure file share in python I have used all basic stuffs available in google share = ShareClient.from_connection_string(connection_string, "filshare") my_file = share.get_file_client("dir1/sub_idr1") # print(dir(my_file)) stream_1 = my_file.download_file() Asked By: Shreedhar Hegde || Source Answers: I tried in my environment …

Total answers: 1

Load file from Azure Files to Azure Databricks

Load file from Azure Files to Azure Databricks Question: Looking for a way using Azure files SDK to upload files to my azure databricks blob storage I tried many things using function from this page But nothing worked. I don’t understand why example: file_service = FileService(account_name=’MYSECRETNAME’, account_key=’mySECRETkey’) generator = file_service.list_directories_and_files(‘MYSECRETNAME/test’) #listing file in folder /test, …

Total answers: 2