« [choose color]色を取得する | トップページ | [Ai]イラストレーターと解像度とPDF設定 »

[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]DownloadFile

「ReName.rtf」をダウンロード[Download]DownloadFile

 

Screencapture00220728_135606jst


こんなイメージです。


|

« [choose color]色を取得する | トップページ | [Ai]イラストレーターと解像度とPDF設定 »

AppleScriptRename」カテゴリの記事

コメント

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