Android Drive API V3 - 如何知道文件是否已被删除或删除?

时间:2018-05-21 12:54:35

标签: android google-drive-api google-drive-android-api

我正在使用 Google Drive API V3 来创建带有Android应用的文件夹。

创建后,文件ID将保存到共享首页 - 以便稍后使用和追加。 文件保存为用户信息,而不是应用信息,因此用户可以从驱动器更改它。 文件夹可能被彻底删除或删除 - 如果是,我想创建新文件夹。

根据这个explanation about searching files,我可以使用files.list - 但这将返回所有文件。 我只需要特定的文件(如果存在)

获取列表时

- 我可以看到trashed的值(true / false) 像这样:

List<String> fileInfo = new ArrayList<String>();
FileList result = mDriveServiceForTrash.files().list()
         .setPageSize(100)
         .setFields("nextPageToken, files(id, name,trashed)")
         .execute();
List<File> files = result.getFiles();

if (files != null) {
    for (File file : files) {
        fileInfo.add(String.format("%s (%s) trashed =%s\n",
            file.getName(), file.getId(),file.getTrashed()));
    }
}

在我的代码中 - mDriveFolderId是创建文件夹后带有文件夹ID的字符串 - 取自"file.getId()"

我尝试过使用

File checkFileTrashed = mDriveService.files()
    .get(mDriveFolderId)
    .setFields("files(trashed)")
    .execute();

这会返回异常:

error = 400 Bad Request {
  "code" : 400,
  "errors" : [ {
    "domain" : "global",
    "location" : "fields",
    "locationType" : "parameter",
    "message" : "Invalid field selection files",
    "reason" : "invalidParameter"
  } ],
  "message" : "Invalid field selection files"
}
  1. 任何人都可以指导我获得价值的解决方案 具体文件?
  2. setFields()的结构是什么?
  3. 非常感谢!!

1 个答案:

答案 0 :(得分:1)

找到SetFields()的结构 - 识别文件是否已删除

File checkFileTrashed = mDriveService.files()
    .get(mDriveFolderId)
    .setFields("trashed")
    .execute();

您可以使用此reference from Google Drive API

文件已删除后,您将获得IOException, 与"message" : "File not found: <the fileId >&#34;

你可以抓住它并处理逻辑(创建新文件夹,向用户发送消息等等)