I'm trying to launch libsvm's svm_scale on windows using the following code,
Process a = new Process();
a.StartInfo.FileName = ("C:\\Users\\Projects\\Documents\\libsvm-master\\windows\\svm-scale");
a.StartInfo.Arguments = ("-l -1 -u 1 -s range C:\\Users\\Projects\\Documents\\MyAttempts\\Attempt_3\\Final_Final.txt>C:\\Users\\Projects\\Documents\\MyAttempts\\Attempt_3\\Scale.scale");
a.Start();
but unfortunetely when running this code, it says "cannot open file C:\Users\Projects\Documents\MyAttempts\Attempt_3\Final_Final.txt>C:\Users\Projects\Documents\MyAttempts\Attempt_3\Scale.scale"
but when i type the same command on the command prompt it works fine and creates the Scale.scale file n the specifed destination. Please help me resolve this problem...... Thanx..