Applescript para verificar la existencia de un archivo

1

Grabo programas de radio durante la noche y luego ejecuto un applecript para cambiar el nombre de los archivos. Tengo el script funcionando a menos que no haya un archivo con el nombre al que esté intentando llamar y renombrar. Aquí está mi código que está funcionando:

set Yesterday to (current date) - (24 * 60 * 60)
set myYesterday to (date string of Yesterday)
set y to year of date myYesterday
set m to month of date myYesterday
set d to day of date myYesterday

set newMyYesterday to m & " " & d & ", " & y as text

set newHourOne to "Recording1 - " & newMyYesterday & " - Hour 1.mp3"
set theFile to (POSIX file "/Users/Administrator/Recordings/Recording1.mp3") as alias

tell application "Finder"
    set the name of file theFile to newHourOne
end tell

set newHourTwo to "Recording2 - " & newMyYesterday & " - Hour 2.mp3"
set theFile to (POSIX file "/Users/Administrator/Recordings/Recording2.mp3") as alias

tell application "Finder"
    set the name of file theFile to newHourTwo
end tell

¿Puede alguien mostrarme cómo comprobar si el archivo individual ("Recording1.mp3" o "Recording2.mp3") existe antes de intentar cambiar el nombre del archivo individual? Gracias !!

    
pregunta Sittininthecheapseats 04.10.2015 - 17:54

1 respuesta

1

Esto debería funcionar:

if exists file theFile then
    # do stuff
else
    display dialog "File not found" buttons {"OK"} default button 1
end if
    
respondido por el At0mic 04.10.2015 - 18:43

Lea otras preguntas en las etiquetas