Applescript per verificare l'esistenza di un file

1

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 !!

    
posta Sittininthecheapseats 04.10.2015 - 17:54
fonte

1 risposta

1

Questo dovrebbe funzionare:

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

Leggi altre domande sui tag