« [exiftool]作ったアプリケーションのバージョン | トップページ | [fonts.com]ニュースレーター »

[SetFile]ファイルを不可視 可視 に変更する。

不可視


-----ファイルを隠す

set OpenDef to the path to desktop as alias

tell application "Finder"

set FileAlias to choose file with prompt "ファイルを選んでください" default location (OpenDef) with multiple selections allowed, showing package contents and invisibles

set PoPath to POSIX path of FileAlias

do shell script "/Developer/Tools/SetFile -a V " & PoPath


end tell

可視


-----ファイルを表示する

set OpenDef to the path to desktop as alias

tell application "Finder"

set FileAlias to choose file with prompt "ファイルを選んでください" default location (OpenDef) with multiple selections allowed, showing package contents and invisibles


set PoPath to POSIX path of FileAlias

do shell script "/Developer/Tools/SetFile -a v " & PoPath


end tell


両方とも1文字を除いて同じ
do shell script "/Developer/Tools/SetFile -a V "
do shell script "/Developer/Tools/SetFile -a v "
大文字か小文字か
の違いだけですね。


「visibles.zip」をダウンロード[Download]新しいウィンドで開きます



|

« [exiftool]作ったアプリケーションのバージョン | トップページ | [fonts.com]ニュースレーター »

AppleScriptBasics」カテゴリの記事

コメント

この記事へのコメントは終了しました。