Re: Get all files in a folder ignoring invisibles?
Re: Get all files in a folder ignoring invisibles?
- Subject: Re: Get all files in a folder ignoring invisibles?
- From: "Stockly, Ed" <email@hidden>
- Date: Thu, 25 Mar 2010 11:59:36 -0700
- Thread-topic: Get all files in a folder ignoring invisibles?
Title: Re: Get all files in a folder ignoring invisibles?
This is a job for System events.
HTH,
ES
tell application "System Events"
set myString to the name of every file of myFolder whose visible is true
end tell
set AppleScript's text item delimiters to return
set myString to myString as text
display alert myString
On 3/25/10 11:03 AM, "Alex Zavatone" wrote:
tell application "Finder"
set myString to the name of every file of myFolder
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:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden