D
David Schwartz
I'm writing a little c program and one of things I'm trying to get it to do
is cd to a particular directory and then run an exe that is on my path, as
follows...
strcpy(working_string, "c:\\davedata\\bats\\ks.exe fnord");
system("cd \\playtime\\d\\build\\html");
system(working_string);
But ks.exe does not seem to be invoked on the files in the
\\playtime\\d\\build\\html directory.
Can someone tell me how to do this?
is cd to a particular directory and then run an exe that is on my path, as
follows...
strcpy(working_string, "c:\\davedata\\bats\\ks.exe fnord");
system("cd \\playtime\\d\\build\\html");
system(working_string);
But ks.exe does not seem to be invoked on the files in the
\\playtime\\d\\build\\html directory.
Can someone tell me how to do this?