Reputation: 831
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
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