当前位置: 首页>>代码示例>>C#>>正文


C# DriveService.GetAllChildren方法代码示例

本文整理汇总了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);
     });
 }
开发者ID:kamackay,项目名称:KD,代码行数:13,代码来源:Drive.cs

示例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);
 }
开发者ID:kamackay,项目名称:KD,代码行数:20,代码来源:Drive.cs


注:本文中的DriveService.GetAllChildren方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。