本文实例讲述了asp.net编程实现删除文件夹及文件夹下文件的方法。分享给大家供大家参考,具体如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//获取文件夹
string path = Server.MapPath( "Image" );
//获取文件夹中所有图片
if (Directory.GetFileSystemEntries(path).Length > 0)
{
//遍历文件夹中所有文件
foreach ( string file in Directory.GetFiles(path))
{
//文件己存在
if (File.Exists(file))
{
FileInfo fi = new FileInfo(file);
//判断当前文件属性是否是只读
if (fi.Attributes.ToString().IndexOf( "ReadyOnly" ) >= 0)
{
fi.Attributes = FileAttributes.Normal;
}
//删除文件
File.Delete(file);
}
}
//删除文件夹
Directory.Delete(path);
}
|
希望本文所述对大家asp.net程序设计有所帮助。