我正在尝试查找 iCloud 文件夹的路径,有人建议
~/Library/Mobile\ Documents/com~apple~CloudDocs/
,但我找不到该目录。
这是正确的目录。您无法使用 Finder 打开它(尽管它是 Finder 将显示为
iCloud Drive
的目录)。
如果启动终端,您可以:
cd ~/Library/Mobile\ Documents/com~apple~CloudDocs/
然后运行
ls -l
查看内容。
直接回答
使用
$HOME
而不是 ~
,这样您在列出目录时就不会收到错误。
用户@主机名 ~ % ls "~/Library/Mobile Documents"
ls: ~/Library/Mobile Documents: 没有这样的文件或目录
符号链接(symlink)
从命令行使用此目录时,符号链接可能会使事情变得更简单。
来自主页的符号链接
ln -s "$HOME/Library/Mobile Documents/com~apple~CloudDocs" iCloudDrive
ln -s "$HOME/Library/Mobile Documents" mobileDocuments
对于任何目录或文件,您可以将其从 Finder 拖到终端中,然后将输入完整路径。例如,您可以在终端中输入“cd”(注意空格),将文件夹拖到那里,然后按回车键。您现在位于该目录中。
这是一件美丽的事情。