Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この自動化スクリプトは一例です。パスを表示すると正しいように見えますが、そのパスにファイルをコピーしようとするとエラーが発生します。
これが修正です - posix パスが必要です。
on run {input, parameters} set theFilePath to POSIX path of (input as string) & "/Samples" as string display dialog theFilePath return theFilePath end run