Applescript для подсчета файлов в подпапке не работает - PullRequest
1 голос
/ 03 сентября 2010

Я не могу заставить это работать вообще. Было бы здорово, если бы кто-нибудь мог помочь или пролить свет на это?

Спасибо

on adding folder items to thisFolder after receiving thisItem

 try

  -- This gives you the name of the route folder, and the name of the added folder
  set folderName to name of (info for thisFolder)
  set itemName to name of (info for thisItem)

      -- I am trying to find out how many items the new folder that has been added to the route folder has but none of the variables below work
  -- Example: Route Folder > New Folder > # of files in new folder?
  set the numberOfFiles to the number of items in itemName
  set fileCount to (count (info for thisItem))
  set the item_count to the number of items in thisItem

  -- Dialog box to show information
  set the alert_message to (the folderName as text) & return & (the itemName as text) & return & (the item_count as text) as Unicode text
  display dialog the alert_message

 end try
end adding folder items to

1 Ответ

1 голос
/ 03 сентября 2010

, если thisItem - папка, которую вы добавили, сделайте это ...

tell application "Finder"
    if kind of thisItem is "Folder" then
        set itemsInTheFolder to items of thisItem
        set folderCount to count of itemsInTheFolder
    end if
end tell
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...