[AppleScript] 隠しファイルの表示/非表示を切り替え

コピペしてすぐに使えます。

Finder上の隠しファイルの表示/非表示を切り替えます。

スポンサーリンク

隠しファイルの表示/非表示

display dialog "隠しファイルの設定を変更します" buttons {"キャンセル", "隠す", "表示する"} default button 3

set tmpDialog to result
set tmpBtn to button returned of tmpDialog

if tmpBtn = "隠す" then
	try
		do shell script "defaults delete com.apple.finder AppleShowAllFiles"
	end try
else if tmpBtn = "表示する" then
	try
		do shell script "defaults write com.apple.finder AppleShowAllFiles -boolean true"
	end try
end if
try
	do shell script "killall Finder"
end try

説明

内容としては「do shell script 」でコマンドを投げているだけです。
ただ、これを作っておく事で手軽に切り替えができますし、ターミナルを触りたがらない人たちも使ってもらえるというオブラートの効果もあります。

タイトルとURLをコピーしました