1
我使用google-api-php-client庫下載和刪除Google Drive中的文件。
要刪除,以下功能(文件已共享):如何使用Google API客戶端永久刪除Google Drive中的文件
public function removeFile($fileId) {
try {
$this->service->files->delete($fileId);
} catch (Exception $e) {
return "Error: " . $e->getMessage();
}
return true;
}
在這種情況下,該文件的網頁界面谷歌驅動器仍然存在,但打開或移動垃圾桶不能。
如何刪除文件,以便它從Web界面中消失?