I have the following code to run AutoCAD software :
string path = @"C:\Program Files\Autodesk\AutoCAD 2012 - English\acad.exe";
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = path;
p.Start();
But with this code I need the exact file path of acad.exe
What I would like to be able to do is click the button and have my code find AutoCAD and run. But if it can not find , show a message.
I guess you need something like below;
This method loops through each folder in destination for now its PFx86 to find out what we need.Be warned this technique can throw good number of Security exceptions.