繁体   English   中英

Microsoft Graph - .NET SDK - OneDrive 大文件上传(> 4MB 大小)

[英]Microsoft Graph - .NET SDK - OneDrive Large File Upload (> 4MB in size)

使用适用于 Microsoft Graph 的 .NET SDK,您可以上传(小)文件。 示例在这里

如何使用 .NET SDK 上传大文件(> 4MB)?

换句话说,是否可以利用 SDK 来实现“使用上传会话上传大文件”

这是我最近使用 Microsoft Graph .Net SDK 编写的代码。 需要 GraphServiceClient(graphClient) 身份验证。

    if (fileSize.MegaBytes > 4)
                    {
                        var session = await graphClient.Drive.Root.ItemWithPath(uploadPath).CreateUploadSession().Request().PostAsync();
                        var maxSizeChunk = 320 * 4 * 1024;
                        var provider = new ChunkedUploadProvider(session, graphClient, stream, maxSizeChunk);
                        var chunckRequests = provider.GetUploadChunkRequests();
                        var exceptions = new List<Exception>();
                        var readBuffer = new byte[maxSizeChunk];
                        DriveItem itemResult = null;
                        //upload the chunks
                        foreach (var request in chunckRequests)
                        {
                            // Do your updates here: update progress bar, etc.
                            // ...
                            // Send chunk request
                            var result = await provider.GetChunkRequestResponseAsync(request, readBuffer, exceptions);

                            if (result.UploadSucceeded)
                            {
                                itemResult = result.ItemResponse;
                            }
                        }

                        // Check that upload succeeded
                        if (itemResult == null)
                        {
                            await UploadFilesToOneDrive(fileName, filePath, graphClient);
                        }
                    }
                    else
                    {
                        await graphClient.Drive.Root.ItemWithPath(uploadPath).Content.Request().PutAsync<DriveItem>(stream);
                    }

这将在 .NET Microsoft Graph 客户端库的下一版本中可用。 它将与 .NET OneDrive 客户端库中的功能相同。 您可以在我的工作分支中查看此内容。 您可以在 repo 中提供反馈。

暂无
暂无

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

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