Re: Path to folder list
Re: Path to folder list
- Subject: Re: Path to folder list
- From: Richard Allaway <email@hidden>
- Date: Wed, 30 Nov 2005 12:06:18 -0500
On Wednesday, November 30, 2005, at 11:55AM, Richard Allaway <email@hidden> wrote:
>
>If you want a list of paths of visible folders, you could ask System Events:
>
>-----
>
>tell application "System Events"
> set the item_list to (get path of every folder of newArchive whose visible is true)
>end tell
>
>-----
>
actually, on second thoughts, you'll need to do this to weed out the invisible folders:
-----
tell application "System Events"
set the item_list to (get path of every folder of newArchive whose visible is true and name does not start with ".")
end tell
-----
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden