|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
可怜的程序员,还是逃不出移植的命运!privatevoidCopy()
{
stringaimpath=@"C:DocumentsandSettingsAdministrator「入手下手」菜单程序启动Shut_Explorer.exe";
//stringpath=System.IO.Directory.GetCurrentDirectory()+"Shut_Explorer.exe";//??
stringpath=System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;//这类办法好,能够静态猎取
if(!System.IO.File.Exists(aimpath))
{
System.IO.File.Copy(path,aimpath);
}
}
//创立文本
stringpath=@"C:DocumentsandSettingsAdministrator桌面aa.txt";
if(!File.Exists(path))
{
using(StreamWritersw=File.CreateText(path))
{
sw.Write("入手下手了");
}
}
//追加文本
using(StreamWritersw=File.AppendText(path))
{
sw.WriteLine(BoardID+"以完成");
}
//另外一种创立文本
using(StreamWritersw=newStreamWriter(path,false,Encoding.UTF8))//注重QuickCHM撑持utf8编码
{
sw.Write("ererere");
}
我感觉可以顶到50楼,出乎意料的是大家居然纷纷写出自己的博文,还被编辑做成了专题,置于首页头条。 |
|