Nested Directory in Azure Storage Share

I want to create a nested directory in Azure file share and upload files to directories.
I can only create one level directory in the Azure file share.

    resource "azurerm_storage_share_directory" "file_share_directories" {
      name = "email/user/img"   
      share_name = azurerm_storage_share.file_share.name
      storage_account_name = azurerm_storage_account.storage_account.name
      depends_on = [azurerm_storage_share.file_share]
}

Azure Terraform does not provide uploading files to a directory.

Can anyone please help me with this?