I made a console application in C#, and I want to execute it from R. I am trying to run the code system(url)
where url
is the location of the file in the directory ApplicationPath/Bin/Debug
.
I get this error when I do it: Warning message: running command ... had status 127
.
Do I need to compile my code in Visual Studio in a particular way to get it to run? It's worth noting that another console application that I made the exact same way (at least I thought) does work using this method. The only difference I notice is that in the Debug folder, the one that works has a Visual Studio Solution User Options file, and the other does not. I'm not sure if that makes a difference, but if so how do you create that?