Как сказано в комментарии, samples показывает действие для общего файлового ресурса.Я предполагаю, что вы хотите прочитать содержимое файла, который в общей папке имеет тот же код, приведенный ниже:
from azure.storage.file import FileService
storageAccount='xxxxx'
accountKey='xxxxx'
file_service = FileService(account_name=storageAccount, account_key=accountKey)
# if the file in the root path of the share, please let the directory name as ''
file = file_service.get_file_to_text(share_name, directory_name, file_name)
print(file.content)
Этот код получает файл с типом Файл .