写入 代码如下:
using (StreamWriter writer = File.CreateText(@"c:\long\WindowsFormsApplication1\remindrs.txt"))
string CurrPath = Environment.CurrentDirectory;
DEBUG的启动目录里面就OK 了
//获得应用程序的当前路径
Environment.CurrentDirectory
//获取应用程序的当前工作目录。
System.IO.Directory.GetCurrentDirectory()
AppDomain.CurrentDomain.BaseDirectory
//这两个只能在WindowForm中使用;
Application.StartupPath
Application.ExecutablePath
//获取和设置当前目录(即该进程从中启动的目录)的完全限定路径。
Environment.CurrentDirectory
//获取启动了应用程序的可执行文件的路径,包括可执行文件的名称。
Application.ExecutablePath
也可以看看这里
http://www.cnblogs.com/saptechnique/archive/2008/06/19/1225177.html