Re: NSTask Path
Re: NSTask Path
- Subject: Re: NSTask Path
- From: Vince DeMarco <email@hidden>
- Date: Tue, 14 Jan 2003 10:14:25 -0800
On Tuesday, January 14, 2003, at 9:29 AM, Rhon Fitzwater wrote:
Hi all (again),
[task setArguments:[NSArray arrayWithObject:[NSString
stringWithString:@"Contents/Resources/main.pl"]]];
Above is what isnt working with my program. Does anyone know what path
I need to get my perl script to run. I have it so that when the
program is build the script is copied to the Resources folder inside
the package. But with the path I have above I get this error in the
console:
Can't open perl script "Contents/Resources/main.pl": No such file or
directory
What path do I need to add to the code above?
Thanks.
-Rhon
P.S I also tried ./Contents/Resources/main.pl and it did not work.
Use NSBundle to find the main.pl program, (Don't hard code these paths)
path = [[NSBundle mainBundle] pathForResource:@"main" ofType:@"pl"]
use the path returned above
vince
_______________________________________________
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: | |
| >NSTask Path (From: Rhon Fitzwater <email@hidden>) |