- <%@ Language=VBScript %>
- <%Server.ScriptTimeout=50000%>
- <HTML>
- <HEAD>
- <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- </HEAD>
- <BODY>
- <%
- function JudgeParaRegular(intID)
- if intID<>"" and isnumeric(intID) then
- JudgeParaRegular=intId
- else
- Response.Write "输入错误!"
- Response.End
- end if
- end function
- intFileSize=JudgeParaRegular(Request.QueryString("intFileSize"))
- strPath=Request.QueryString("strPath")
- if instr(strPath,":")=0 then strPath=server.MapPath(strPath)
- %>
- <%
- function deletefiles(path)
- on error resume next
- Set fs=Server.CreateObject("Scripting.FileSystemObject")
- if fs.FileExists(path) then
- fs.DeleteFile path,True
- response.write "成功删除"&path
- else
- response.write "文件不存在!"
- end if
- Set fs=nothing
- if Err.number<>0 then Response.Write Err.number
- end function
- strFile=request("strFile")
- if request("strFile")<>"" then
- deletefiles strFile
- end if
- %>
- <%
- function ListFolderFiles(strPath,intFileSize,intFlag)
- strOriginPath= Request.ServerVariables("Script_Name")& "?strPath=" &Request.QueryString("strPath") & "&intFileSize="&Request.QueryString("intFileSize")
- if strPath<>"" then
- if intFlag=0 then
- intFlag=intFlag+1
- end if
- Set objFs=Server.CreateObject("Scripting.FileSystemObject")
- Set objFdir=objFs.GetFolder(strPath)
- strParentPath= objFs.GetParentFolderName(strPath)
- for each strSubFiles in objFdir.files
- if strSubFiles.size /(1024^2)>=intFileSize then
- Response.Write "<TR>" & vbcrlf
- Response.Write "<TD>" & replace(strNullTran(strSubFiles),strNullTran(strSubFiles.Name),"<b>"&strNullTran(strSubFiles.Name)&"</b>") & "</TD>" & vbcrlf
- Response.Write "<TD>"& strNullTran(FormatNumber(strSubFiles.size /(1024^2),2)) &" MB</TD>" & vbcrlf
- Response.Write "<TD>" & strNullTran(strSubFiles.type) & "</TD>" & vbcrlf
- Response.Write "<TD>" & strNullTran(strSubFiles.datelastmodified) & "</TD>" & vbcrlf
- Response.Write "<TD><A HREF='"& strOriginPath & "&strFile="&strNullTran(strSubFiles)&"'><img align=absmiddle border=0 src='images/delete.gif'></A></TD>" & vbcrlf
- Response.Write "</TR>" & vbcrlf
- intFlag=intFlag+strSubFiles.size
- end if
- next
- for each strSubFolders in objFdir.SubFolders
- if intFlag=0 then intFlag=1
- ListFolderFiles strSubFolders,intFileSize,intFlag
- next
- else
- Response.Write "<tr><td colspan=5>输入错误!</td></tr>"
- end if
- ListFolderFiles=intFlag
- end function
- function strNullTran(str)
- if isnull(str) or str="" then
- strNullTran=" "
- else
- strNullTran=str
- end if
- end function
- Response.Write "<TABLE WIDTH=100% BORDER=1 CELLSPACING=1 CELLPADDING=1>" & vbcrlf
- Response.Write "<TR>" & vbcrlf
- Response.Write "<TD>文件名及路径</TD>" & vbcrlf
- Response.Write "<TD align=center>大小</TD>" & vbcrlf
- Response.Write "<TD align=center>类别</TD>" & vbcrlf
- Response.Write "<TD align=center>修改时间</TD>" & vbcrlf
- Response.Write "<TD align=center>删除</TD>" & vbcrlf
- Response.Write "</TR>" & vbcrlf
- intFlag=ListFolderFiles(strPath,CDbl(intFileSize),0)
- Response.Write "<tr><td align=right>总计:</td><td colspan=4>"&formatNumber((intFlag-1)/(1024^2),2) &" MB</td></tr>" & vbcrlf
- Response.Write "</TABLE>" & vbcrlf
- %>
- </BODY>
- </HTML>
使用FSO按文件大小浏览文件目录并进行删除操作
2019-11-01 12:46asp教程网 ASP教程
使用FSO按文件大小浏览文件目录并进行删除操作
延伸 · 阅读
- 2019-11-01fso的一些特殊功能
- 2019-11-01NAV导致IIS调用FSO失败的解决方法
- 2019-11-01构建免受 FSO 威胁虚拟主机
- 2019-10-31ASP中FSO对象对IIS WEB服务器数据安全的威胁及对策
- 2019-10-31ASP中文本文件与数据库文件的数据交换(FSO)
- 2019-10-31ASP中FSO的神奇功能 - FSO不能做到的
精彩推荐
- ASP教程
ASP 使用jqGrid实现读写删的代码(json)
因为有了比较成型的CMS,一直没有舍弃ASP,一直想用.net重写一下,是后话了。...
- ASP教程
ASP 改良版MD5、SHA256多重加密类(二次及多次)
ASP的MD5、SHA256多重加密技术,根据字符串获取加密类型,属于混合加密,暴利破击完全无望!可移植到 C#/C/C++ 、ASP.NET、VB.NET 或其他类型的语言上...
- ASP教程
javascript增加干扰数据实现简单加密效果
javascript增加额外的干扰数据似简单加密,需要的朋友可以参考下。...
- ASP教程
ASP编程入门进阶(十八):FSO组件之文件操作(上)
FSO中除了可以对驱动器、文件夹的操作以外,功能最强大的就是对文件的操作了。它可以用来记数、内容管理、搜索还可生成动态HTML页面等等。 一、fso....
- ASP教程
根据日期得到生肖的ASP函数
最近公司开放网站需要用到根据用户添加的出生日期得到生肖发现了这个函数。使用起来不错 ...
- ASP教程
asp之字符串操作函数
asp之字符串函数示例,用字符串函数对字符串进行截头去尾、大小写替换等操作。...
- ASP教程
用Asp如何实现防止网页频繁刷新?
用Asp如何实现防止网页频繁刷新?...
- ASP教程
asp中文数字验证码
asp大写数字验证码的实现方法 ...