Questions tagged [azure-files]

357 questions
29
votes
2 answers

How can I use "Azure File Storage" with Web App Service?

I have been struggling to find some resources that help explain, how we use the File Storage with Web App Service. There are ways to use it with the old Web Roles, Check here (Using the Azure File Service in your Cloud Services (Web and Worker…
Jalal El-Shaer
  • 14,502
  • 8
  • 45
  • 51
12
votes
3 answers

Azure File Storage: Create nested directories

My code looks like this CloudFileClient client = ...; client.GetShareReference("fileStorageShare") .GetRootDirectoryReference() .GetDirectoryReference("one/two/three") .Create(); This errors if directories one or two don't exist. Is…
sirdank
  • 3,351
  • 3
  • 25
  • 58
8
votes
2 answers

How to Read Azure File Share Files from Azure DevOps Pipeline

I currently have created an Azure storage account. Inside of this storage, I've created two file shares. I've uploaded files into each file share, and would like to access these files from within the Azure DevOps pipeline. I've researched online how…
8
votes
7 answers

Connecting to Azure File Share from Mac: No Route to Host

I'm trying to connect to an Azure file share from my Mac running High Sierra 10.13.6 using the following command: mount_smbfs -d 0777 -f 0777 //dolphins:PASSWORDHERE@dolphins.file.core.windows.net/models /Users/b3020111/Azure However I keep getting…
Trotts
  • 111
  • 2
  • 5
8
votes
2 answers

Cannot connect to Azure File Share

Created Azure file share in portal and copied the PowerShell script to connect it as drive Q: (verified not in use). Response: New-PSDrive : The network resource type is not correct At line:3 char:1 + New-PSDrive -Name Q -PSProvider FileSystem -Root…
Barry Briggs
  • 209
  • 2
  • 14
7
votes
5 answers

Unable to delete a directory in Azure

I have a fileshare in Azure, which contains folders inside, which in turn has many folders inside. I am trying to delete a folder manually by right clicking on the folder, which has so many files inside and it says Failed to delete directory.…
vikky
  • 171
  • 1
  • 1
  • 16
7
votes
2 answers

Azure file shares could not be accessed | Port 445

I have setup Azure Storage Files, I have added a couple of firewall rules in my dev machine to open the port#445. But I could not access my file shares now. It does not respond to ping command as well. But I am able to access the same file shares…
Ashokan Sivapragasam
  • 2,033
  • 2
  • 18
  • 39
7
votes
2 answers

How do I map an Azure File Share as a volume in a Docker Compose file?

I have so far only found examples on how to create a volume on the host machine, e.g: version: "3.3" services: mysql: image: mysql volumes: - db-data:/var/lib/mysql/data volumes: db-data: So this defines a volume named db-data…
Mathias Rönnlund
  • 4,078
  • 7
  • 43
  • 96
6
votes
2 answers

Databricks and Azure Files

I need to access Azure Files from Azure Databricks. According to the documentation Azure Blobs are supported but I am need this code to work with Azure files: dbutils.fs.mount( source =…
Frank
  • 317
  • 2
  • 11
6
votes
1 answer

Azure file storage access document with direct link

I'm trying to access files which I'm programmatically uploading to the azure file storage. But when pasting the direct url: Any idea how I can directly get that file when I want to download from Azure file storage?
5
votes
2 answers

Getting: bad option; for several filesystems (e.g. nfs, cifs) when trying to mount azure file share in K8 container

I created a Azure file share and I am able to connect to it using map network drive in my laptop having windows 10. I created a hello-world spring boot application with volume mount configurations for azure file share and trying to deploy in…
Saurabh
  • 2,384
  • 6
  • 37
  • 52
5
votes
1 answer

Can Azure Event Grid listen to changes in Azure File Shares?

I'd like to trigger an Azure Function when a file is added to an Azure File share. I've not seen any documentation on this. Is it supported? How would I get that done?
Irwin
  • 12,551
  • 11
  • 67
  • 97
5
votes
1 answer

Kubernetes persistent volumes with azureFile

I'm trying to create a persistent volume using the azureFile however I keep getting the following error. MountVolume.SetUp failed for volume "kubernetes.io/azure-file/2882f900-d7de-11e6-affc-000d3a26076e-pv0001" (spec.Name: "pv0001") pod…
5
votes
2 answers

Can an Azure WebJob or Azure Function be triggered by Azure File Storage activity?

Can an Azure WebJob or Azure Function be triggered by Azure File Storage activity ? For example, when a file is created in folder "/todo/".
Guillaume Morin
  • 3,910
  • 6
  • 25
  • 40
5
votes
1 answer

Azure File Storage: create share for App Services

I created an App Service with Tomcat and a webapp that needs to store files, which should be accessible by another webapp in another App Service. The application only accepts absolute file paths. If I put my webapps in a VM I could create a share to…
Marcel Hoekstra
  • 1,334
  • 12
  • 19
1
2 3
23 24