Azure SAS
根据我的阅读,您可以在浏览器中放置SAS URI并调出文件
您还可以创建具有容器列表和读取权限的SAS。在.NET中,我将遵循如何使用它。
您是否可以映射该SAS列表并在Windows资源管理器中作为网络驱动器读取并查看该文件?
谢谢!
答案 0 :(得分:1)
使用SAS将网络驱动器映射到Azure Blob存储。
Azure Blob Storage目前不支持在Windows资源管理器中映射为网络驱动器。如果我们想要管理Azure blob,我们可以使用Microsoft Azure Storage Explorer。有关更多信息,请参阅document。
如果我们想在Windows资源管理器中映射网络驱动器,请使用Azure文件存储,有关Azure文件存储的更多详细信息,请参阅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>
注意: