2013年6月7日金曜日

Mac OS Xで不可視ファイルを表示させる方法

不可視ファイルやフォルダを表示させるには色々な方法がありますが、AppleScriptを使う方法を紹介します。

まずは、「AppleScript エディタ」を起動します。そして以下のスクリプトをコピーペーストして保存します。その時「ファイルフォーマット」は「アプリケーション」にします。後は、できあがったアプリケーションをダブルクリックするだけです。(Mac OS X 10.8.4で検証済)。



display dialog "不可視項目を表示しますか?" buttons {"キャンセル", "表示する", "表示しない"} default button "表示しない"
set button_text to button returned of result

if button_text is "表示する" then
do shell script "defaults write com.apple.finder AppleShowAllFiles TRUE"
tell application "Finder"
quit
end tell
display dialog "Finderを再起動します。" buttons {"OK"} default button "OK"
tell application "Finder"
launch
end tell
else
do shell script "defaults write com.apple.finder AppleShowAllFiles FALSE"
tell application "Finder"
quit
end tell
display dialog "Finderを再起動します。" buttons {"OK"} default button "OK"
tell application "Finder"
launch
end tell
end if

0 件のコメント:

コメントを投稿

注: コメントを投稿できるのは、このブログのメンバーだけです。