C#删除文件
Posted dzw159
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#删除文件相关的知识,希望对你有一定的参考价值。
string file =System.Web.HttpContext.Current.Server.MapPath(fileUrl); if (System.IO.File.Exists(file))//判断文件是否存在
{ System.IO.File.Delete(file); }
查找自:https://zhidao.baidu.com/question/123004173.html
以上是关于C#删除文件的主要内容,如果未能解决你的问题,请参考以下文章