Search code examples
c#dropnet

C# DROPBOX API modify 10000 file limit


I'm working with dropbox: upload, delete, copy,..etc through DropNet API. So the problem is I can't access any folder that has over 10000 files. How can I improve it? Is it possible?


Solution

  • DropBox' REST API limits file access to 10,000 files per folder.

    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.