0

我正在开发一个与谷歌驱动器集成的安卓应用程序。我的 android 应用程序创建了自己的 google drive 文件夹来保存应用程序创建的用户文档。我想检测用户何时删除了此应用程序文件夹及其驻留在谷歌驱动器 TRASH 中。当我检测到该文件夹​​已被删除时,我想从我的应用程序中永久删除它。要检测文件夹已被丢弃,我询问其标签并找到键值对“已丢弃”/“真”。然后我执行此代码以永久将其从垃圾箱中删除 mService.files().delete(folder.getId()); 但是该文件夹仍出现在谷歌驱动器垃圾箱中。如何从谷歌驱动器垃圾箱中永久删除文件夹?

4

1 回答 1

1
service.files().trash(fileId).execute();
This is for moving file to trash

service.files().untrash(fileId).execute();
for delete file from trash  on server

check this link also :
https://developers.google.com/drive/v2/reference/files/trash
于 2013-11-07T11:11:33.393 回答