Click here to Skip to main content
15,896,348 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In my application i had "one .exe" file. And How can i execute that exe file without using system path(C:\Users\AIS\Documents\Visual Studio 2010\Projects\LOQ\LOQ\Events\Example.exe)

Plz someone help me sir/madam......!
Posted
Comments
Nasir M@hmood 21-Mar-13 8:05am    
Please clear what you want to do, do you want to execute another application from current application
Zoltán Zörgő 21-Mar-13 8:20am    
You mean you don't want to hardcode a full path in your application code?
You have two main options:
1) use configuration file (app.config via project properties manager), and store it as parameter
2) if the path is relative to your running application, just store that relative path.
ZurdoDev 21-Mar-13 8:30am    
It is not clear what you want.

C#
string Delete= domaininfo.ConfigurationFile = System.Environment.CurrentDirectory + "\\One.exe";
            domaininfo.ApplicationBase = System.Environment.CurrentDirectory;
 
Share this answer
 
You can add the path of your "one.exe" program (C:\Users\AIS\Documents\Visual Studio 2010\Projects\LOQ\LOQ\Events) to PATH (enviroment variable). In this case you can get in the console just the "one.exe" to start your program ;)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900