Ho bisogno di creare una stringa contenente i nomi dei file dei 15 file più recenti (per data di modifica) all'interno di una directory. Delimitato solo da uno spazio:
file1.jpg file2.jpg file3.jpg
Uso ImageMagick tramite la riga di comando. Ecco cosa ho attualmente, ma ottengo un errore numero -1728:
tell application "Finder"
set imageItems to every file of folder wallpaperPath
set imageItems to the reverse of (sort imageItems by modification date)
set concatFiles to ""
repeat with n from 1 to 15
set imageItem to item n of imageItems
set imageName to the file name of imageItem
set concatFiles to concatFiles & " " & imageName
end repeat
end tell
do shell script "cd " & wallpaperPath & "; montage " & concatFiles & " -tile 3x5 -geometry 500x500+1+1 ~/Desktop/final.jpg"