fso删除当前文件夹下所有的内容

2009-05-12 15:06:23来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

<HTML>
<HEAD><TITLE>fso删除当前文件夹中的所有内容</TITLE></HEAD>
<style>
body {font-size:12px;margin-top:20px;margin-left:20px;}
</style>
<BODY>
<%
'功能:删除当前文件夹下所有内容,包括文件夹和文件
'开发:wangsdong
'网站:www.aspprogram.cn
'原创文章,转载请保留此信息

'创建一个FileSystemObject对象的事例
Set MyFileObject=Server.CreateObject("Scripting.FileSystemObject")
'创建一个Folder对象
foldername=server.mappath("./")
Set MyFolder=MyFileObject.GetFolder(foldername)
i=0
'循环显示其中文件夹
For Each thing in MyFolder.subfolders
  if MyFileObject.folderExists(thing) then            '判断folder文件夹是否存在
     t2=thing
     MyFileObject.deletefolder thing                         '删除folder文件夹
  response.write "<br>"&t2&"-----文件夹已经删除"
  else
     response.write "<br>"&thing&"-----文件夹不存在,无法删除"
  end if
i=i+1
Next
response.write "共有删除了"&i&"个文件夹<br><br>"

'循环显示其中文件
i=0
For Each thing in MyFolder.Files
 if MyFileObject.FileExists(thing) then            '判断folder文件夹是否存在
    t2=thing
     MyFileObject.DeleteFile thing                         '删除folder文件夹
  response.write "<br>"&t2&"-----文件已经删除"
  else
     response.write "<br>"&thing&"-----文件不存在,无法删除"
  end if
i=i+1
Next
response.write "共有删除了"&i&"个文件"
%>
</Body>
</HTML>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:asp过滤不文明字符的函数

下一篇:asp中将字符转换成变量使用

热门词条
热门标签