How do I find the application\'s path in a console application?
In Windows Forms, I can use Application.StartupPath to find the current path, but this d
Application.StartupPath
You may be looking to do this:
System.IO.Path.GetDirectoryName( System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)