简体   繁体   English

C#DROPBOX API修改10000个文件限制

[英]C# DROPBOX API modify 10000 file limit

I'm working with dropbox: upload, delete, copy,..etc through DropNet API. 我正在使用Dropbox:通过DropNet API上传,删除,复制等等。 So the problem is I can't access any folder that has over 10000 files. 所以问题是我无法访问任何包含10000个以上文件的文件夹。 How can I improve it? 我该如何改善? Is it possible? 可能吗?

DropBox' REST API limits file access to 10,000 files per folder. DropBox的REST API将文件访问权限限制为每个文件夹10,000个文件。

So I'm afraid there's really nothing you can do, except fragment your folder into subfolders and limit them to <= 10,000 files each. 因此,除了将文件夹分成多个子文件夹并将每个文件夹限制为<= 10,000个文件之外,恐怕您真的无能为力。

file_limit Default is 10,000 (max is 25,000). file_limit默认值为10,000(最大为25,000)。 When listing a folder, the service won't report listings containing more than the specified amount of files and will instead respond with a 406 (Not Acceptable) status response. 列出文件夹时,该服务将不报告包含的文件数量超过指定数量的列表,而是以406(不可接受)状态响应进行响应。

https://www.dropbox.com/developers/core/docs#metadata https://www.dropbox.com/developers/core/docs#metadata

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

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