[AppleScript]ファイル名のリネーム
単機能です。w
ファイル名を変更(リネーム)する
アップルスクリプト
色々な場面で利用出来ると思います。
シンプルに書きましたので
分りやすいと思います。
10.6x
----ファイルを選択して FileAlias に格納
set FileAlias to choose file "変更するファイルを選択"
----変更後のファイル名を指定
display dialog "ファイル名を入力" default answer "新しいファイル名"
----変更後のファイル名をNewNameに格納
set NewName to text returned of the result as Unicode text
----FileAliasをテキスト形式に変更してFilePathに格納
set FilePath to FileAlias as Unicode text
----FileAliasの情報を取得ObjInfoに格納
set ObjInfo to info for FileAlias
----ObjInfoからファイル名を抜き出しFileNameに格納
set FileName to name of ObjInfo as Unicode text
----ObjInfoから拡張子を抜き出しExtNameに格納
set ExtName to name extension of ObjInfo as Unicode text
----新しいファイル名をNewFileNameに格納
set NewFileName to NewName & "." & ExtName as Unicode text
----ディレクトリ名をDirNameに格納
set DirName to POSIX file (do shell script "dirname " & POSIX path of FilePath) & ":" as Unicode text
----ファイル名変更
tell application "Finder"
set name of file FileName of folder DirName to NewFileName
end tell
「ReName.scpt.zip」をダウンロード[Download]
と
こんなイメージです。
| 固定リンク
「AppleScriptRename」カテゴリの記事
- 【Rename】AppleScriptでリネーム3種(2021.03.12)
- 画像ファイル名をリネームする(2016.07.09)
- [okwave]Applescriptでファイル名の一部を置換(2013.04.04)
- [AppleScript]ファイル名のリネーム シンプル版(2010.09.09)
- [AppleScript]ファイル名のリネーム(2010.07.28)
この記事へのコメントは終了しました。
コメント