繁体   English   中英

将文件从 azure 函数应用上传到 azure 文件共享

[英]Uploading file to azure file share from azure function app

我有一个函数应用程序和 azure 文件共享。 我想使用 url 从 Internet 上传文件到我的 azure 文件共享存储。

  private ShareFileClient GetShareFile(string filePath)
    {
        string connectionString = "My connection string";

        return new ShareFileClient(connectionString, "temp", filePath);
    }

         ShareFileClient destFile = GetShareFile(filePath);

            // Start the copy operation
            await destFile.StartCopyAsync(new Uri(DownloadUrl));

但是这段代码没有按预期工作。 它抛出错误“未经授权的 RequestId:000db1ff-801a-000a-0602-b24449000000 时间:2020-11-03T16:58:36.5697281Z 状态:401(未经授权)错误代码:CannotVerifyCopySource” 任何帮助将不胜感激

一个简单的代码来编写和阅读:

    string con_str = "DefaultEndpointsProtocol=https;AccountName=0730bowmanwindow;AccountKey=xxxxxx;EndpointSuffix=core.windows.net";
    string sharename = "test";
    string filename = "test.txt";
    string directoryname = "testdirectory";

    ShareServiceClient shareserviceclient = new ShareServiceClient(con_str);
    ShareClient shareclient = shareserviceclient.GetShareClient(sharename);
    ShareDirectoryClient sharedirectoryclient = shareclient.GetDirectoryClient(directoryname);

    //write data.
    ShareFileClient sharefileclient_in = sharedirectoryclient.CreateFile(filename,1000);
    string filecontent_in = "This is the content of the file.";
    byte[] byteArray = Encoding.UTF8.GetBytes(filecontent_in);
    MemoryStream stream1 = new MemoryStream(byteArray);
    stream1.Position = 0;
    sharefileclient_in.Upload(stream1);

    //read data.
    ShareFileClient sharefileclient_out = sharedirectoryclient.GetFileClient(filename);
    Stream stream2 = sharefileclient_out.Download().Value.Content;
    StreamReader reader = new StreamReader(stream2);
    string filecontent_out = reader.ReadToEnd();

上面的代码在我这边工作正常,你只需要先将文件转换为流。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM