azure-files Questions
5
Solved
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 i...
Machutte asked 14/9, 2020 at 15:14
2
Solved
Could someone please tell some examples where we can use Azure file share in azure instead of Azure Blobs. In the internet whenever I search I get it can be mounted or it follows SMB protocol. But ...
Wingless asked 24/1, 2023 at 15:32
2
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 ...
Sentimental asked 10/2, 2021 at 21:16
7
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:[email protected]/models /Users/b30201...
Jp asked 23/8, 2018 at 11:4
3
Solved
My code looks like this
CloudFileClient client = ...;
client.GetShareReference("fileStorageShare")
.GetRootDirectoryReference()
.GetDirectoryReference("one/two/three")
.Create();
This errors...
Informed asked 1/10, 2018 at 14:30
2
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:
S...
Licentiate asked 20/6, 2018 at 10:35
2
Solved
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 = "wasbs://...
Fro asked 10/4, 2019 at 17:9
2
Solved
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 t...
Thebaid asked 16/7, 2020 at 16:30
1
Solved
Azure newbie here.
I have an architecture requirement to move the data from on-premise to cloud database. This is done in two steps due to security restrictions and timelines.
Move the file to az...
Antepast asked 1/6, 2020 at 6:11
2
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...
Improve asked 12/1, 2018 at 19:52
2
Solved
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 w...
Bolero asked 28/3, 2019 at 4:5
2
Solved
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...
Scrod asked 5/11, 2015 at 13:1
2
Solved
I want download a large file from the Azure File storage by powershell,
I found all the solution are use the Azure blobs, it's can not work with Azure files,
Is any way to download the file from A...
Redpencil asked 8/5, 2017 at 5:40
1
Solved
I have this code which I'm using for uploading files in azure file storage container.
var originalFileName = GetDeserializedFileName(result.FileData.First());
var uploadedFileInfo = new FileInf...
Retroflex asked 27/9, 2016 at 10:10
1
Solved
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 fr...
Tubuliflorous asked 27/9, 2016 at 9:2
1
Solved
We have an app that lists files in a folder through Azure Files. When we use the C# method:
Directory.GetFiles(@"\\account.file.core.windows.net\xyz")
It takes around a minute when there are 20...
Capella asked 2/6, 2016 at 3:8
1
© 2022 - 2024 — McMap. All rights reserved.