How can I find the current directory for a .NET application running under the Visual Studio debugger?
Update 1. To be clear: I don\'t want to change
Within your code, call the function
System.IO.Directory.GetCurrentDirectory()
By default, unless you've changed the Debug properties of your project, the current directory will start as the bin\Debug directory of your project (where the .exe runs from).