码迷,mamicode.com
首页 > 其他好文 > 详细

文件处理

时间:2018-08-24 15:59:33      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:code   server   new   open   app   string   技术   one   sys   

一丶删除文件

技术分享图片
 1  public string DelFile(string fileRelativePath)
 2         {
 3 
 4             try
 5             {
 6                 string filePath = Server.MapPath("~" + fileRelativePath);
 7 
 8                 //if (System.IO.File.Exists(filePath))
 9                 //{
10                 //    System.IO.File.Delete(filePath);
11                 //}
12 
13                 FileInfo file = new FileInfo(filePath);
14                 if (file.Exists)
15                 {
16                     file.Delete();
17                 }
18 
19                 return "";
20             }
21             catch (Exception)
22             {
23 
24                 throw;
25             }
26         }
删除

 

文件处理

标签:code   server   new   open   app   string   技术   one   sys   

原文地址:https://www.cnblogs.com/chenze-Index/p/9529996.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!