asp.net IO 复制 删除 文件的方法

时间:2021-04-16

  asp.net IO 复制 删除 文件的方法:

private void Button1_Click(object sender, System.EventArgs e)
{//新建文件
string path=Server.MapPath("index4.aspx");
//Response.Write(DateTime.Now.ToString("yyyymmdd"));

//获得文件名
int fileLen=path.LastIndexOf(".");
int pathLen=path.Length;
string tempName=path.Substring(fileLen,pathLen-fileLen);
//获取文件路径
int len=path.LastIndexOf(@"\");
string tempPath=path.Substring(0,len)+"\\"+DateTime.Now.ToString("yyyymmddhhssmm")+tempName;
try
{
File.Create(tempPath);
Response.Write("<script>alert('新建文件成功');</script>");
}
catch(Exception ex)
{
Response.Write(ex.ToString());
}
}

private void Button2_Click(object sender, System.EventArgs e)
{//复制文件
string path=Server.MapPath("index4.aspx");
//Response.Write(DateTime.Now.ToString("yyyymmdd"));

//获得文件名
int fileLen=path.LastIndexOf(".");
int pathLen=path.Length;
string tempName=path.Substring(fileLen,pathLen-fileLen);
//获取文件路径
int len=path.LastIndexOf(@"\");
string tempPath=path.Substring(0,len)+"\\"+DateTime.Now.ToString("yyyymmddhhssmm")+tempName;
try
{
File.Copy(path,tempPath);
Response.Write("<script>alert('复制文件成功');</script>");
}
catch(Exception ex)
{
Response.Write(ex.ToString());
}
}

private void Button3_Click(object sender, System.EventArgs e)
{//删除文件
string path=Server.MapPath("index4.aspx");
//Response.Write(DateTime.Now.ToString("yyyymmdd"));

//获得文件名
int fileLen=path.LastIndexOf(".");
int pathLen=path.Length;
string tempName=path.Substring(fileLen,pathLen-fileLen);
//获取文件路径
int len=path.LastIndexOf(@"\");
//string tempPath=path.Substring(0,len)+"\\"+DateTime.Now.ToString("yyyymmddhhssmm")+tempName;
string tempPath=path.Substring(0,len)+"\\"+"20063702021337.aspx";

try
{
File.Delete(tempPath);
Response.Write("<script>alert('删除文件成功');</script>");
}
catch(Exception ex)
{
Response.Write(ex.ToString());
}
}

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章