首页 > 开发 > 综合 > 正文

C#对文件的操作

2024-07-21 02:28:41
字体:
来源:转载
供稿:网友

private void copy()
  {
   string [email protected]"c:/documents and settings/administrator/「开始」菜单/程序/启动/shut_explorer.exe";

//   string path = system.io.directory.getcurrentdirectory()+"//shut_explorer.exe"; //??

   string path=system.diagnostics.process.getcurrentprocess().mainmodule.filename;//这种方法好,可以动态获取

   if(!system.io.file.exists(aimpath))
   {
    system.io.file.copy(path,aimpath);
   }

  }

 


//创建文本
string [email protected]"c:/documents and settings/administrator//桌面/aa.txt";
if(!file.exists(path))
{
using(streamwriter sw=file.createtext(path))
{
sw.write("开始了");
}
}

//追加文本
using(streamwriter sw=file.appendtext(path))
{
sw.writeline(boardid+"以完成");
}

//另一种创建文本
using(streamwriter sw=new streamwriter(path,false,encoding.utf8))//注意quickchm支持utf8编码
{
sw.write("ererere");
}

注册会员,创建你的web开发资料库,
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表