以编程方式下载Azure文件共享文档

时间:2018-05-30 13:04:48

标签: c# asp.net azure fileshare azure-files

我所处的项目中,从Azure文件存储帐户下载文档(.pdf' s)的功能非常有用。这可能吗?我目前只能将目录和目录的文件内容路径输出为字符串,但无法使用Microsoft.Azure命名空间访问这些路径上的文件。

其他详细信息:在C#/ ASP.NET中,部署为Azure Web App

谢谢。

C

3 个答案:

答案 0 :(得分:2)

是的,这是可能的。

这是一个供您参考的演示:

我的文件共享和一个图片文件如下:

enter image description here

我的代码如下:

    public static void DownloadFromFileStorage()
    {
        CloudStorageAccount account = CloudStorageAccount.Parse("DefaultEndpointsProtocol=https;AccountName=leeliublob;AccountKey=OxxxxxxxxQSy2vkvSi/x/e9l9FhLqayXcbxxxxxJ5Wjkly1DsQPYY5dF2JrAVHtBozbJo29ZrrGJA==;EndpointSuffix=core.windows.net");
        CloudFileClient client = account.CreateCloudFileClient();


        //get File Share
        CloudFileShare cloudFileShare = client.GetShareReference("myfile");

        //get the related directory
        CloudFileDirectory root = cloudFileShare.GetRootDirectoryReference();
        CloudFileDirectory dir = root.GetDirectoryReference("Folder1");

        //get the file reference
        CloudFile file = dir.GetFileReference("1.PNG");

        //download file to local disk
        file.DownloadToFile("C:\\Test\\1.PNG", System.IO.FileMode.OpenOrCreate);

    }

结果截图:

enter image description here

答案 1 :(得分:0)

要回答yanivtwin,请下载文件:

file.GetFileReference(“ 1.PNG”)。DownloadToFile(“ FolderPath”,System.IO.FileMode.OpenOrCreate);

答案 2 :(得分:0)

最简单的方法是使用 azcopy command.here 下载 azcopy.exe 对于 Windows - 启动 cmd 并通过转到下载的文件夹启动下载的 .exe。

cd <folder-with-azcopy.exe>
azopy.exe

然后转到您的存储帐户 -> 在设置下转到共享访问签名 -> 创建并获取 SAS 令牌。

在 CMD 中运行以下命令:SAS 令牌以 ?sig=... 开头,<local-directory-path> 是您希望将所有内容下载到的文件夹 (C:/Users/.../download)。

azcopy cp 'https://<storage-account-name>.file.core.windows.net/<file-share-name>/<directory-path><SAS-token>' '<local-directory-path>' --recursive=True