Tengo un libro de Excel abierto, con los nombres de los archivos antiguos en la columna A y los nombres de los archivos nuevos en la columna B. Estoy tratando de usar el applecript a continuación para cambiar el nombre de mis archivos. Se ejecuta sin errores, pero no cambia el nombre de los archivos. ¿Me estoy perdiendo de algo? Cualquier ayuda es muy apreciada.
set theDirectory to "/Users/admin/Desktop/test/copied images"
tell application "Microsoft Excel"
tell active sheet
tell used range
set rc to count of rows
end tell
set theList to get value of range ("A1:B" & rc) as list
repeat with theItem in theList
try
do shell script "mv " & theDirectory & "/" & quoted form of item 1 of theItem & space & theDirectory & "/" & quoted form of item 2 of theItem
end try
end repeat
end tell
end tell