多くのUSBスティックにファイルをコピーする必要があります。したがって、私は短いアップルスクリプトを書こうとしています。私はapplescriptに精通していないので、誰かが私にいくつかのヒントを教えてくれるといいですね。
私がこれまでに持っているもの:
10か所のUSBハブ
スティックの名前を変更するための短いスクリプト。
今、私は接続されているすべてのスティックにファイルをコピーすることに固執しています:
property ignoredVolumes : {"Macintosh HD", "Time Machine Backups"}
set myPath to ("Macintosh HD:Users:myusername:USB-Stick") as string
tell application "System Events"
set rootVolume to disk item (POSIX file "/Volumes" as text)
set allVolumes to name of every disk item of rootVolume
repeat with aVolume in allVolumes
if aVolume is not in ignoredVolumes then
set name of disk item (path of rootVolume & aVolume) to "Stickname"
end if
end repeat
end tell
私が今やらなければならないことは、myPathから接続されているすべてのUSBスティックにコピーすることです。それらはすべて同じ名前を取得するため、名前の後ろに番号が付けられます(Stickname、Stickname 1、Stickname 2、...)
そのため、名前を変更したばかりのスティックにコピーコマンドをループに追加する必要があります。
誰かが私に助けをくれることを願っています。