我必須將文件複製到很多USB棒。所以我想給我寫一個簡短的蘋果。我不熟悉applescript,所以如果有人能給我一些提示,那將會很棒。使用AppleScript將文件複製到多個USB棒
我有什麼至今:
10位USB-集線器
短的腳本來重命名棒。
現在I'm停留在複製文件到連接每棒:
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,...)
因此,我需要在我的循環中將複製命令添加到剛更名的棒。
希望有人能給我一個援助之手。
嗨Lri,謝謝!我會嘗試。 KR – solick
進行了一些修改,正是我一直在尋找的... – solick