I m trying to open a folder in Finder using AppleScript. The following is my code. I want the folder WorkSpace to open in Finder, but it opens the Parent Folder
WorkSpace
It's actually simpler than it seems:
tell application "Finder" to open ("/Volumes/MyMacDrive/Mani/WorkSpace/" as POSIX file)
or use colons to give an AppleScript path:
tell application "Finder" to open "MyMacDrive:Mani:WorkSpace"
with that you have an open window