5

我一直在尝试将纯文本文件保存到 Android 上 Google Drive 中的特定文件夹中。

到目前为止,使用 Google Drive 上的文档和快速入门指南,我已经能够做一些朝着正确方向发展的事情,首先我能够创建一个纯文本文件:

  File body = new File();
  body.setTitle(fileContent.getName());
  body.setMimeType("text/plain");
  File file = service.files().insert(body, textContent).execute();

我已经能够在 Google Drive 的基本目录中创建一个新文件夹:

  File body = new File();
  body.setTitle("Air Note");
  body.setMimeType("application/vnd.google-apps.folder");
  File file = service.files().insert(body).execute();

我还能够列出用户 Google Drive 帐户中的所有文件夹:

      List<File> files = service.files().list().setQ("mimeType = 'application/vnd.google-apps.folder'").execute().getItems();
      for (File f : files) {
          System.out.println(f.getTitle() + ", " + f.getMimeType());
      }

但是,我对如何将文本文件保存到 Google Drive 中的文件夹中有些困惑。

4

3 回答 3

6

您需要使用 parent 参数使用 insert 将文件放入文件夹中。更多详细信息,请访问https://developers.google.com/drive/v2/reference/files/insert

像这样的东西

File body = new File();  
body.setTitle(fileContent.getName());
body.setMimeType("text/plain");
body.setParents(Arrays.asList(new File.ParentReference().setId(parentId));  
File file = service.files().insert(body, textContent).execute();
于 2013-01-20T08:04:59.743 回答
1

如果您想在 Google Drive 的特定文件夹中插入文件,请按照以下步骤操作。假设我们已经从驱动器中检索了所有文件夹,现在我将在列表中的第一个文件夹中插入一个空文件,所以

         //Getting Folders from the DRIVE
List<File> files = mService.files().list().setQ("mimeType = 'application/vnd.google-apps.folder'").execute().getItems();

   File f  =files.get(1)//getting first file from the folder list
    body.setTitle("MyEmptyFile");
    body.setMimeType("image/jpeg");
    body.setParents(Arrays.asList(new ParentReference().setId(f.getId())));
    com.google.api.services.drive.model.File file = mService.files().insert(body).execute();

现在这将在检索文件列表顶部的文件夹中创建一个空文件。

于 2014-04-02T10:52:58.453 回答
0

第一步:创建文件夹

File body1 = new File();
body1.setTitle("cloudbox");
body1.setMimeType("application/vnd.google-apps.folder");
File file1 = service.files().insert(body1).execute();

第二步:插入你的文件

File body2 = new File();  
body2.setTitle(fileContent.getName());
body2.setMimeType("text/plain");
body2.setParents(Arrays.asList(new ParentReference().setId(file1.getId())));  
File file2 = service.files().insert(body2, mediaContent).execute();
于 2014-11-25T14:03:31.080 回答