Re: Folder test
Re: Folder test
- Subject: Re: Folder test
- From: Yosemite <email@hidden>
- Date: Mon, 04 Dec 2000 14:49:00 -0900
-- one solution
set theItemInfo to info for (thePath & anitem as string)
if folder of theItemInfo then
-- do stuff
end if
-- hcir
mailto:email@hidden
>
I have a droplet that process a folder hierarchy.
>
>
I want to test to make sure it was a folder and not
>
something else that was dropped on it.
>
>
I tried the following:
>
>
*************
>
>
if itemPassed is folder then
>
"do stuff"
>
else
>
display dialog
>
end if
>
>
*************