Reputation: 607
Azure SAS
From what I have read you can put a SAS URI in the browser and bring up the file
You can also create a SAS with list and read permission to the container. In .NET I follow how to use that.
Can you map that SAS list and read as a network drive in Windows Explorer and see the file?
Thanks!
Upvotes: 5
Views: 10411
Reputation: 249
Map Network drive to Azure Blob Storage using SAS.
Azure Blob Storage doesn't support to be mapped as a network drive in the Windows Explorer currently. If we want to mange Azure blob we can use Microsoft Azure Storage Explorer. for more information refer document.
If we want to map a network drive in Windows Explorer, please use Azure file storage, more detail about Azure file storage please refer to document.
net use <drive-letter>: \\<storage-account-name>.file.core.windows.net\<share-name> /u:AZURE\<storage-account-name> <storage-account-key>
example :
net use z: \\samples.file.core.windows.net\logs /u:AZURE\samples <storage-account-key>
Note:
Upvotes: 4