Re: How to examine folder contents
Re: How to examine folder contents
- Subject: Re: How to examine folder contents
- From: SemiColon <email@hidden>
- Date: Thu, 4 Jan 2001 16:08:27 -0800
Correction. (and three posts, oh my)
That should read:
set SUD to path to startup disk as string
tell application "Finder"
if (name of every folder of folder (SUD & "MASTERFOLDER:")) contains "x" then
open file (SUD & "MASTERFOLDER:" & "x:" & "SPECIALFILE")
else
if (name of every folder of folder (SUD & "MASTERFOLDER:")) contains "y" then
open file (SUD & "MASTERFOLDER:" & "y:" & "SPECIALFILE")
end if
end if
end tell
;