NoChance
NoChance

Reputation: 5752

Google Docs API - Can you ask it to zip several files before download to a PC

I have a WinForms application in C# and I want to download several files as a single Zip file to speed the download. How can I use the API to do this?

Also, is it faster / more efficient to start several threads to download several files or 1 thread to download files in sequence?

Upvotes: 0

Views: 157

Answers (2)

Arne S
Arne S

Reputation: 1016

You could do it directly in Docs API - java example here

Upvotes: 1

Arne S
Arne S

Reputation: 1016

Maybe not what you are asking for but as I understand your problem you it could be solved by simply picking up the files from the API and use the zip function in Python to zip them together. See this thread

Upvotes: 1

Related Questions