标签: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