在 MacOSX 13.5.1 上卸载 Google Drive 后如何删除 Google Drive 文件夹

在 MacOSX 13.5.1 上卸载 Google Drive 后如何删除 Google Drive 文件夹

我已经从运行 MacOSX 13.5.1 的公司笔记本电脑上卸载了 Google Drive(通过使用 Finder 从应用程序文件夹中删除该应用程序,并且我想删除我的 Google Drive 数据,但这没有用。

使用 Finder 删除数据文件夹不起作用。(什么也没发生)

我去了

cd /Users/user/Library/CloudStorage/

并试图删除我的[电子邮件保护]

rm -rf [email protected]
or
sudo rm -rf [email protected]

它删除了大多数文件,但以下类型的文件除外:

rm: cannot remove '[email protected]/Other computers/My MacBook Pro': Operation not permitted
rm: cannot remove '[email protected]/.shortcut-targets-by-id/<SOME GOOGLE FILE ID>': Operation not permitted
rm: cannot remove '[email protected]/.tmp/2XXX2/<Some Google File Name>.gsheet': Operation not permitted
rm: cannot remove '[email protected]/.file-revisions-by-id': Operation not permitted

因此,多个账户中仍留有敏感信息(不仅仅是[电子邮件保护]),其他帐户从未同步到此计算机。敏感信息,例如 Google 文件 ID、Google 文件名、我的 Google Drive 帐户电子邮件。

file '[email protected]/.tmp/XXXX/<FILE NAME>.gsheet'
[email protected]/.tmp/XXXX/<FILE NAME>.gsheet: JSON data

cat '[email protected]/.tmp/XXXX/<FILE NAME>.gsheet'
{"":"WARNING! DO NOT EDIT THIS FILE! ANY CHANGES MADE WILL BE LOST!","doc_id":"<GOOGLE FILE ID>","resource_key":"","email":"[email protected]"}

我可以将文件夹移动到 /tmp,但仍然无法使用命令行(sudo rm,rm)在那里删除它,我试图将它移动到 /dev/null,但没有成功;)

答案1

  • 打开终端:
cd /Users/<user>/Library/CloudStorage/
sudo rm -rf '[email protected]' #this will gives some errors, most of the data would be deleted
mv '[email protected]' /tmp
  • 打开 Finder
    • Shift+CMD+G
    • 类型/tmp
    • 从 Finder 中删除该文件夹,MacOsX 会提示您输入密码,然后成功将文件夹放入垃圾箱,然后就可以清空了。

注意:安全删除文件需要一些额外的步骤来覆盖空磁盘空间(考虑到 MacOSX 和 SSD,这可能很困难)

相关内容