我使用Google Storage API for C#而未找到如何从Google存储下载部分文件。 有可能吗?
那是我的代码:
using (var stream = new MemoryStream())
{
ObjectsResource.GetRequest request = _service.Objects.Get(bucketName, fileName);
request.MediaDownloader.ChunkSize = chunkSize;
request.Download(stream);
}
答案 0 :(得分:2)
我发布了一个演示如何完成的示例。 请参阅https://github.com/GoogleCloudPlatform/dotnet-docs-samples/blob/master/storage/api/QuickStart/Program.cs
中名为DownloadByteRange
的函数