Re: NSTask & curl
Re: NSTask & curl
- Subject: Re: NSTask & curl
- From: Andrew Farmer <email@hidden>
- Date: Sat, 6 Jun 2009 14:29:00 -0700
On 6 Jun 2009, at 14:18, Ammar Ibrahim wrote:
I'm using NSTask to spawn a process to do some work as per the code
below:
<snip>
[task setLaunchPath:@"/usr/bin/curl"];
Why on earth are you shelling out to do that? NSURLDownload exists for
a reason.
In any case, the reason you aren't ending up with a file where you
expect it is this:
[NSString stringWithFormat:@"-o %@", [downloadFilePath
lastPathComponent]],
Given downloadFilePath /foo/bar/baz, this'll create a file called "
baz" - with a leading space. Either use "-o%@" or use two separate
arguments.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden