Bedingung in AppleScript: Wenn das Verzeichnis keine rekursive Erweiterung enthält, dann die App beenden

Bedingung in AppleScript: Wenn das Verzeichnis keine rekursive Erweiterung enthält, dann die App beenden

Das scheint zu funktionieren. Das einzige Problem ist, dass es nicht rekursiv ist.

property Location : alias "Macintosh HD:Location"
tell application "System Events" to files of Location whose name extension = "ext"
if the result = {} then tell application "Example" to quit

Antwort1

Den gesamten Inhalt können Sie mit dem Finder abrufen:

set f to POSIX file "/Users/username/folder" as alias
tell application "Finder"
    files of entire contents of f where name extension is "torrent"
end tell

Wenn der Ordner viele Dateien enthält, ist die Verwendung von find wahrscheinlich schneller:

do shell script "find ~/folder -name \\*.torrent" is not ""

Antwort2

Versuchen:

set downloadsPath to (path to downloads folder)
tell application "System Events" to files of downloadsPath whose name extension = "torrent"
if the result ≠ {} then tell application "Transmission" to activate

verwandte Informationen