CocoaDev

Edit AllPages

How do I connect to an iDisk? I just want a basic mount that logs in, and then opens the Sites folder.


It depends what you want to do really. At the most basic level you use open a URL using NSWorkspace, or you could run the webdav mount program.


Or use the .Mac framework, which is a public API. –FrederickCheung

See http://developer.apple.com/internet/dotmackit.html


DotMacKit is great, but it doesn’t actually mount the iDisk. If you want to mount the iDisk so that you can have an NSOpenPanel begin on the iDisk then you need to do something like this:

–AdhamhFindlay