Scrivo programmi radio durante la notte e poi eseguo un applescript per rinominare i file. Ho lo script di lavoro a meno che non ci sia un file chiamato che sto tentando di chiamare e rinominare. Ecco il mio codice che funziona:
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
Qualcuno può mostrarmi come verificare se il singolo file ("Recording1.mp3" o "Recording2.mp3") esiste prima di provare a rinominare il singolo file? Grazie !!