I found something on google but it not working on C# Console Application
What I found:
string appPath = Path.GetDirectoryName(Application.ExecutablePath);
How I can get application directory using c# Console Application?
|
|
|
If you still want to use Application.ExecutablePath in console application you need to:
Also you can use If you'd like not to include neither |
||||
|
|
|
Application is not available for Console Applications, it's for windows forms. To get the working directory you can use
Also to get the directory of the executable, you could use:
|
|||
|
|