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
I use this if the exe is supposed to be called by double clicking it
var thisPath = System.IO.Directory.GetCurrentDirectory();