そのため、データ入力用に写真に適切な名前を付けて一意の ID に割り当てるのに役立つ Applescript があります。Mac を使用しているため、これは AppleScript で行われます。これはうまく機能しますが、これは 1 台のマシンに対してのみです。現在必要とされているのは、複数のマシンで作業することです。私がやりたいことは、写真をサーバーに置き、クライアント マシンにそこからフォルダーに対してアクションを実行させることです。
私が現在抱えている問題は、情報が正しいにもかかわらず、スクリプトがユーザーを認証せず、スクリプトを実行しないことです。私はこれを正しくやっていますか?
tell application "Finder" of machine "eppc://user:password@server.local"
set renameFiles to the selection
set inventoryFiles to every file in folder (((path to documents folder) as text) & "Inventory Photos")
set currentIndex to the count of inventoryFiles
repeat with i from 1 to the count of renameFiles
set currentFile to (item i of renameFiles)
set new_name to ((10000 + currentIndex + i) as text) & ".jpg"
set name of currentFile to "a" & new_name
end repeat
end tell
助けてくれてありがとう