azure_system_helpers_6.py 251 B

123
  1. def create_directory(cls, share_name: str, azure_fileshare_conn_id: str, directory: str):
  2. hook = AzureFileShareHook(azure_fileshare_conn_id=azure_fileshare_conn_id)
  3. hook.create_directory(share_name=share_name, directory_name=directory)