Sujit Singh
Sujit Singh

Reputation: 831

iterate folders on Google Drive using .net google drive api

I am using C# for google drive api (.net google api). I need to iterate folders on my google drive? how can I do that? Thanks.

Upvotes: 2

Views: 2343

Answers (1)

Claudio Cherubino
Claudio Cherubino

Reputation: 15024

You can list all your Google Drive folders in .NET using the Documents List API, here is a complete snippet showing how to do that in C#:

https://developers.google.com/google-apps/documents-list/#retrieving_a_list_of_collections

If your goal is to iterate SkyDrive folders, then the Google Drive SDK won't help you, I guess SkyDrive has an API that you can use.

Upvotes: 2

Related Questions