Come contare i file in una cartella usando AppleScript?


2

Come posso contare i file (senza sottodirectory) di una determinata cartella in AppleScript?

Come posso contare le sottodirectory (senza file) di una determinata cartella in AppleScript?

Come posso contare sia i file che le sottodirectory di una determinata cartella in AppleScript?

Per esempio:

count files of folder "Desktop" of home
count folders of folder "Desktop" of home
set variable to (count files of folder "Desktop" of home) + (count folders of folder "Desktop" of home)

Risposte:


3

Il seguente codice AppleScript di esempio:

tell application "Finder"
    count files of desktop
    count folders of desktop
    count items of desktop
    set variable to (count files of desktop) + (count folders of desktop)
    return variable
end tell

Sul mio sistema attualmente produce i seguenti risultati:

tell application "Finder"
    count every file of desktop
        --> 7
    count every folder of desktop
        --> 3
    count desktop
        --> 10
    count every file of desktop
        --> 7
    count every folder of desktop
        --> 3
end tell

Result:
10
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.