i want to call an exe file(abc.exe) from another application(hello)
how can i get the path of abc.exe file programatically so that i can use it to invoke abc.exe
abc.exe is not the part of executing assembly
so
assembly.GetExecutingAssembly() will not work
Use system.diagnostics.process Class’s capabilities to do this.