Re: Open a Text File of Folders/Files?
Re: Open a Text File of Folders/Files?
- Subject: Re: Open a Text File of Folders/Files?
- From: Michelle Steiner <email@hidden>
- Date: Sat, 8 Dec 2001 09:57:35 -0700
On 12/8/01 9:31 AM, Gnarlodious <email@hidden> wrote:
>
The goal is to maintain a text list of folders and files to backup, but I
>
can't get the folders to even open.
Try this:
set itemlist to {"dora:MissileToe:", "dora:Fruitcake:", "dora:Partridge
in a Pear Tree:"}
tell application "Finder"
repeat with eachitem in the itemlist
open folder (contents of eachitem)
end repeat
end tell
Your method was trying to make the list into a folder; that's obviously
not possible.
--Michelle
----------------------------------------------------------------------
| Michelle Steiner | We're not human beings having a spiritual |
| | experience. We're spiritual beings |
| email@hidden | having a human experience. |
----------------------------------------------------------------------