RE: If folder does not exist ...
RE: If folder does not exist ...
- Subject: RE: If folder does not exist ...
- From: email@hidden
- Date: Tue, 11 Jun 2002 18:34:16 EDT
sample for OS 9.x:
IF folder ((path to desktop as string) & "MyFiles") exists then
-- do nothing
ELSE
-- create the folder
end if
should be able to do the inverse by:
IF NOT (folder ((path to desktop as string) & "MyFiles") exists) then
-- create the folder
end if
Best Wishes,
Marc Glasgow
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.