I'm trying to set my application to launch DF.exe
. If I double click the exe (running it normally), it launches fine, however if I try to do so from the launcher I'm creating, it can't find the files necessary for it to run, leading me to believe that it's finding the exe and running it using the wrong directory.
This is what my code looks like:
string DFPath = "0.47.04\\DF.exe";
System.Diagnostics.Process.Start(@DFPath);