本文整理汇总了C#中DriveService.GetAllChildren方法的典型用法代码示例。如果您正苦于以下问题:C# DriveService.GetAllChildren方法的具体用法?C# DriveService.GetAllChildren怎么用?C# DriveService.GetAllChildren使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DriveService
的用法示例。
在下文中一共展示了DriveService.GetAllChildren方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DownloadEachFile
private static void DownloadEachFile(IList<ChildReference> cl, DriveService ds, System.IO.StreamWriter w, String path = "")
{
Parallel.ForEach(cl, child =>//foreach (ChildReference child in cl)
{
File f = ds.Files.Get(child.Id).Execute();
if (f.IsFolder())
{
System.IO.Path.Combine(DriveFolder, path, f.Title).CreateDir();
DownloadEachFile(ds.GetAllChildren(f), ds, w, System.IO.Path.Combine(path, f.Title));
}
else f.DownloadFile(ds, System.IO.Path.Combine(DriveFolder, path), w);
});
}
示例2: UpdateDriveFiles
public static void UpdateDriveFiles()
{
UserCredential credential;
var stream = new System.IO.FileStream("client_secret.json", System.IO.FileMode.Open, System.IO.FileAccess.Read);
string credPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal);
credPath = System.IO.Path.Combine(credPath, ".credentials");
credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
Scopes,
"user",
CancellationToken.None,
new FileDataStore(credPath, true)).Result;
stream.Close();
var ds = new DriveService(new BaseClientService.Initializer() { HttpClientInitializer = credential, ApplicationName = ApplicationName, });
System.IO.StreamWriter w = new System.IO.StreamWriter(@"OutputFile_DriveDownload.txt");
w.WriteLine("Files:");
DownloadEachFile(ds.GetAllChildren("root"), ds, w);
w.Close();
MessageBox.Show("Download of Google Drive Files Complete", "Keith Desktop", MessageBoxButtons.OK, MessageBoxIcon.Information);
}