Problems with *path* specifications under Mac OS X
Problems with *path* specifications under Mac OS X
- Subject: Problems with *path* specifications under Mac OS X
- From: Joan SÃnchez Sabà <email@hidden>
- Date: Wed, 16 Jul 2003 20:19:56 +0200
If I run the follwing Script:
property MyDisk : "Produccis"
property MyFolder : "Scripts"
tell application "Finder"
get exists of disk MyDisk
get exists of folder MyFolder of disk MyDisk
get exists of folder (MyDisk & ":" & MyFolder)
end tell
I get the following results:
tell application "Finder"
exists disk "Produccis"
--> true
exists folder "Scripts" of disk "Produccis"
--> true
exists folder "Produccis:Scripts"
--> false
end tell
Question: Why is the last result false? (when the second is not)
It does NOT happen if I run the same script under Mac OS 9.
Regards
_______________________________________________
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.