[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]
| 固定リンク
「AppleScriptBasics」カテゴリの記事
- [AppleScript]Dict Arrayの入れ子(ネスト)(2021.10.10)
- [Script]ARMアップルシリコンとINTELの分岐(2021.05.23)
- Function Key Codes(2020.09.06)
- Read My Scripts.app (Mountain Lion は AppleScript のルールをどう変更したか)(2012.08.12)
- [system info]ipアドレスを取得する。(2010.11.30)
この記事へのコメントは終了しました。
コメント