如何在 Mac OS X 中隐藏文件夹?

如何在 Mac OS X 中隐藏文件夹?

如何在 Mac OS X 中隐藏文件夹?是否可以使用密码保护文件夹

答案1

您不需要在名称开头添加句点,您可以通过终端中的 leopard 命令使用 Apple HFS+ 文件系统的隐形位:

chflags hidden ~/MyFiles

这会隐藏您的 MyFiles 文件夹。您可以在此处详细了解该命令:

chflags 手册页

大胆火球:隐形位

您还可以使用此 applescript 在 Finder 中切换显示隐藏和未隐藏的文件(我将其编译为通过 quicksilver 触发的应用程序):


set onOff to do shell script "defaults read com.apple.finder AppleShowAllFiles"
if onOff = "NO" or onOff = "OFF" then
    set newState to "show"
    set OnOffCommand to "defaults write com.apple.finder AppleShowAllFiles ON"
else
    set newState to "hide"
    set OnOffCommand to "defaults write com.apple.finder AppleShowAllFiles OFF"
end if

display dialog "Are you sure you want to " & newState & " hidden files? (This will restart the Finder)" buttons {"Cancel", "OK"} default button 2
copy result as list to {buttonPressed}
if buttonPressed is "OK" then
    try
        tell application "Finder" to quit
        do shell script OnOffCommand
        delay 1
        tell application "Finder" to launch
    end try
end if

密码保护文件夹?我会使用磁盘实用程序制作加密的 DMG,并在需要时挂载它。你可以发挥想象力,将 DMG 图标更改为文件夹图标,然后使用隐形位将其隐藏,以获得最佳效果 :-)

如果你想花一些钱来做这件事:间谍

答案2

以 . 开头的文件和文件夹(例如 .hiddenfile.txt)不会显示在 Finder 和保存对话框等中。

您可能需要使用终端。

$ mv file_to_hide.txt .file_to_hide.txt
$ ls -a

答案3

您可以创建具有密码保护的磁盘映像:

1)打开应用程序->实用程序->磁盘实用程序。

2)选择文件->新建...->空白磁盘映像。

3)命名它,将大小设置为您需要的大小,将加密设置为 AES-128,并将格式设置为稀疏磁盘映像。

4) 然后它会创建图像并要求您输入密码。请务必取消选中将密码存储在钥匙串中的选项。

礼貌-http://forums.macrumors.com/showthread.php?t=257063

有关屏幕的教程请按照以下步骤操作:http://www.mactricksandtips.com/2008/04/password-protecting-folder-solution.html

相关内容