Re: ftp mounting
Re: ftp mounting
- Subject: Re: ftp mounting
- From: David Remahl <email@hidden>
- Date: Thu, 05 Sep 2002 01:26:41 +0200
>
Is there a way using Cocoa to have an ftp volume mounted by the finder.
>
I've tried NSWorkspace openURL but that just wants to download
>
whatever is at the address given.
>
>
TIA
>
>
Mark
This AppleScript will do the trick:
tell application "Finder"
mount volume "
ftp://ftp.sunet.se/pub" 'replace with your url
end tell
Use whatever method you see fit to execute it. Either 'osascript', the new
NSAppleScript or maybe plain AppleEvents.
/ Sincerely, David Remahl
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
References: | |
| >ftp mounting (From: Mark Steinberg <email@hidden>) |