hi all,
Hopefully someone can point me in the right direction.
I have a command line tool, written in c++, that I use on my windows
machine, which allows me to drop files onto it. Windows ensures the
tool receives the paths of the files dropped through the argc/argv
arguments in main.
I have po
Hi all,
I want to write a quick little cocoa app that fires off Safari.
I started with something like
int main(int argc, char* argv[]) {
...
...
if(execv("/Applications/Safari.app", someArgs) == -1) {
NSLog(@"execv failed with %s", strerror(errno));
}
}
It always fails with 'Permiss