Come potrei semplificare questo script per trovare gli oggetti del Finder più velocemente?

1

Ho uno script di Applescript che controlla se la mia playlist ha meno di 25 canzoni in meno di 11 minuti e poi sposta alcuni file casuali da un'altra cartella nella mia cartella Temp per creare il numero.

C'è qualche ragione per cui il bit "Finder" dello script è così lento (ci vogliono quasi 15 secondi per l'esecuzione)? Qualunque soluzione alternativa al codice che potrei usare qui?

--this adds some songs if the playlist has less than 25 songs in it shorter than 11 mins
tell application "iTunes"
    set thePlaylist to playlist "Temp on iPod"
    --counts tracks less than 11 mins long
    count ((tracks of thePlaylist) whose duration is less than 665)
    set currentCount1 to result
    if currentCount1 is less than 25 then
        tell application "Finder"
            set theDestination to folder "Macintosh HD:Temp to be Listened to:temp on iPod:"
            get every file of folder "Macintosh HD:Temp to be Listened to:Temp:Short Temp (Small Files, <20mb):" whose kind is "MP3 audio"
            --this only gets the top level files
            set theMusic to result
            set myList to {}
            set theReplaceNo to (25 - currentCount1)
            repeat theReplaceNo times
                set currentFile to some item of theMusic
                copy currentFile to the end of myList
            end repeat
            --reveal every item of myList
            reveal myList
            delay 1.5
            move myList to theDestination
        end tell
    end if
end tell

Qualcuno può aiutarti?

    
posta tardy pigeon 27.10.2016 - 10:38
fonte

1 risposta

1

Ho testato il tuo codice su OSX 10.9.5 e ho visto nessun problema . Ci sono voluti 2 secondi (ritardo incluso). Quindi, per me, il codice è corretto.

Qual è la tua versione di OSX? (Forse un insetto ...)

Probabilmente lo sai già, ma per approfondire la parte che rallenta lo script, puoi utilizzare le seguenti 2 affermazioni:

-- Put this before the code you want to test :
set t to (time of (current date)) --Start timing operations

... your slow code here ...

-- Put this at the end of the code you want to test
set total to (time of (current date)) - t --End timing

Mi dispiace, non posso aiutare di più.

    
risposta data 27.10.2016 - 14:05
fonte

Leggi altre domande sui tag