Answers:
由于该位置是在其他位置生成的,因此您必须对文件系统进行爬网以找到包含这些文件的文件夹。
cd /private/var/folders
sudo find . -name "com.apple.appstore"
# This will throw some errors due to inaccessible directories, so it may be
# better to use
sudo find /private/var/folders -name "com.apple.appstore" 2>/dev/null
# or, making use of the fact that the result will be within TMPDIR
ls -d $TMPDIR../C/com.apple.appstore
如果您复制位置并在空格处键入“ open”并粘贴复制的位置,则应该在finder中看到该文件夹。
ls -d $TMPDIR../C/com.apple.appstore
工作完美。在OSX更新到10.15之后更新应用程序存在问题,在我的情况下,Xcode更新失败,并且它留下的现金文件阻塞了磁盘空间。
appstore
,您的文件可能类似于encrypted0000000000.pkg
。