asp.net如何判断服务器上的目录或文件是否存在
-
asp.net判断服务器上的目录或文件是否存在!(实例)
// ======================================================= 【判断文件是否存在】
- using System.IO; // 还需要命名空间,别忘了
- if (System.IO.File.Exists("c:\\aaa.txt")) // 注意双引号路径应为双斜杠
- {
- //########## 有aaa.txt文件!
- }
// ======================================================= 【判断目录是否存在】
- using System.IO; // 还需要命名空间,别忘了
- if (System.IO.<span style="font-size: 14px; line-height: 26px; ">Directory</span>.Exists("c:\\aaa")) // 注意双引号路径应为双斜杠
- {
- //########## 有aaa文件夹!
- }
// ========================================================= 【创建删除等,网上找的,没测试】- <span style="font-size: 14px; line-height: 26px; ">System.IO.Directory.CreateDirectory(Server.MapPath("file")); // 创建文件夹 </span>
- <span style="font-size: 14px; line-height: 26px; "> System.IO.Directory.Delete(Server.MapPath("file"),true);//删除文件夹以及文件夹中的子目录,文件</span>
- <span style="font-size: 14px; line-height: 26px; "><span style="font-size: 14px; line-height: 26px; "> Directory.Create(Server.MapPath("~/Back/Data.xml"));//创建该文件</span>
- </span>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。