我必须将文件复制到很多 U 盘。因此,我正在尝试给我写一个简短的小程序。我不熟悉applescript,所以如果有人能给我一些提示,那就太好了。
到目前为止我所拥有的:
10位USB-Hub
重命名棒的简短脚本。
现在我被困在将文件复制到每个连接的棒上:
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-Stick。因为它们都具有相同的名称,所以它们将在名称后面安装数字(Stickname,Stickname 1,Stickname 2,...)
所以我需要在我的循环中将复制命令添加到刚刚重命名的棒中。
希望有人能帮帮我。