举例,D:\F1\f1.exe,f1.exe在E:\T1工作目录下执行
1. 当前应用程序的目录的路径
string path1 = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
path1 = “D:\F1”;
2. 获得应用程序当前工作目录,随着OpenFileDialog、SaveFileDialog等对象所确定的目录而改变(切换工作目录)。
string path2 = System.IO.Directory.GetCurrentDirectory();
path2 = “E:\T1”;