Unable to upload large files to Google Docs(无法将大文件上传到 Google 文档)
问题描述
我在 Google Docs 上上传文件为:
I am uploading documents on Google Docs as:
DocumentsService myService = new DocumentsService("");
myService.setUserCredentials("username@domain.com", password );
DocumentEntry newEntry = myService.UploadDocument(@"C:Sample.txt", "Sample.txt");
但是当我尝试上传 3 MB 的文件时,我得到一个异常:
But when I try to upload a file of 3 MB I get an exception:
未处理的类型异常'Google.GData.Client.GDataRequestException'发生在 Google.GData.Client.dll附加信息:执行请求失败:http://docs.google.com/feeds/documents/private/full
An unhandled exception of type 'Google.GData.Client.GDataRequestException' occurred in Google.GData.Client.dll Additional information: Execution of request failed: http://docs.google.com/feeds/documents/private/full
如何将大文件上传到 Google 文档?我正在使用 Google API 版本 2.
How can I upload large files to Google Docs? I am using Google API ver 2.
推荐答案
在您的代码中,您正尝试上传 .txt 文件.
In your code you are attempting to upload a .txt file.
这将被转换为 Google Docs文档"文件.
This will be converted to a Google Docs "Document" file.
可以转换的文件限制为 100 万个字符(大小为 2Mb).
Files that can be converted are limited to 1 Million characters of (2Mb in size).
如果您将扩展名类型更改为 Google 文档无法识别的内容(例如 .log),它将允许您上传最大 10Gb 的文件!虽然免费帐户只有 1Gb 的文件存储空间.
If you change the extension type to something that is not recognised by Google Docs (for example .log), it will allow you to upload a file of up to 10Gb! Although the free account only has 1Gb of storage for files.
这将允许您通过应用程序存储和检索文件,但用户将无法使用 Google 文档界面直接修改它们,尽管他们仍然可以下载文件.
This will allow you to store and retrieve files via your application, but the user will not be able to directly modify them with the Google docs interface, although they can still download it.
这篇关于无法将大文件上传到 Google 文档的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法将大文件上传到 Google 文档


- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 输入按键事件处理程序 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01