asp.net(C#)文件操作_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > asp.net(C#)文件操作

asp.net(C#)文件操作

 2015/4/14 16:28:19  haishu  程序员俱乐部  我要评论(0)
  • 摘要://创建文件夹路径stringpath="\\Files\\";//判断文件夹是否存在if(!Directory.Exists(path)){Directory.CreateDirectory(HttpContext.Current.Server.MapPath("~/"+path));//不存在,则创建。}//原模版stringoldfile="\\oldfile\\模版.xls";//复制后的模版stringnewfile=System.AppDomain.CurrentDomain
  • 标签:.net ASP.NET C# 文件 net 操作

//创建文件夹路径

string path = "\\Files\\";

//判断文件夹是否存在

if (!Directory.Exists(path))
{
     Directory.CreateDirectory(HttpContext.Current.Server.MapPath("~/" + path)); //不存在,则创建。
}

 

//原模版

string oldfile="\\oldfile\\模版.xls";

//复制后的模版

string newfile=System.AppDomain.CurrentDomain.BaseDirectory + path +"新模版.xls";

//判断文件是否存在

if(File.Exists(newfile))

{

     File.Delete(newfile); //删除

}

//复制文件

File.Copy(HttpContext.Current.Server.MapPath("~/" + oldfile),newfile);

//对模版进行操作,写入内容,然后导出Excel

.......................................

//导出成功后,删除文件夹下的模版文件,以防止日后文件逐渐增多,对网站带来不必要的影响。

//判断文件是否存在

if(File.Exists(newfile))

{

     File.Delete(newfile); //删除

}

 

发表评论
用户名: 匿名