これは非常に具体的な質問には答えませんが、代替の解決策を提供します。隠しファイルに簡単かつ迅速にアクセスし、常に開かないようにしたい場合は、いずれにしてもお勧めできません。
これは、表示または非表示にするシングルクリックにプロセスを自動化する小さなスクリプトです。それは排除します:
隠しファイルが常に表示されるという1つの可能性のある問題
ターミナルを2つ開いて、show hidden filesと入力し、毎回コマンドを入力します。
3-非常にユーザーフレンドリー。
これをアプリケーションとしてドックにインストールすると、簡単かつ迅速にアクセスできます。
-- AppleScript to toggle hidden "." files
-- Submitted by Baltwo on Apple Support Community
try
do shell script "defaults read com.apple.finder AppleShowAllFiles"
on error
do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
end try
if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is equal to "0" then
do shell script "defaults write com.apple.finder AppleShowAllFiles 1"
else
do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
end if
do shell script "killall Finder"