我想使用 GoogleDrive API 将大文件(1 GB+)上传到 Google Drive。我的代码适用于较小的文件。但是当涉及到较大的文件时会发生错误。
文件转换为 byte[] 的代码部分发生错误。
byte[] data = System.IO.File.ReadAllBytes(filepath);
这里抛出内存不足异常。
我想使用 GoogleDrive API 将大文件(1 GB+)上传到 Google Drive。我的代码适用于较小的文件。但是当涉及到较大的文件时会发生错误。
文件转换为 byte[] 的代码部分发生错误。
byte[] data = System.IO.File.ReadAllBytes(filepath);
这里抛出内存不足异常。
可能您遵循了 developers.google的建议并且您正在这样做
byte[] byteArray = System.IO.File.ReadAllBytes(filename); MemoryStream stream = new MemoryStream(byteArray); try { FilesResource.InsertMediaUpload request = service.Files.Insert(body, stream, mimeType); request.Upload();
我不知道为什么建议将整个文件放在一个字节数组中,然后MemoryStream
在其上创建一个。我认为更好的方法是:
using(var stream = new System.IO.FileStream(filename,
System.IO.FileMode.Open,
System.IO.FileAccess.Read))
{
try
{
FilesResource.InsertMediaUpload request = service.Files.Insert(body, stream, mimeType);
request.Upload();
.
.
.
}