Это похоже на работу. Единственная проблема - это не рекурсивно.

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

2 ответа2

1

Пытаться:

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
1

Вы можете получить все содержимое с помощью Finder:

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

Если в папке много файлов, использование find возможно быстрее:

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

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .