|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
因为ASP脚本语言非常简单,因此其代码也简单易懂,结合HTML代码,可快速地完成网站的应用程序。还无法完全实现一些企业级的功能:完全的集群、负载均横。硬盘<%@LANGUAGE="VBSCRIPT"CODEPAGE="936"%>
<%
dimst
st=timer()
*************************************************************
*************搜刮硬盘文件的类SearchFile*************
*************挪用办法:*************
*************Setnewsearch=newSearchFile声明*************
*************newsearch.Folder="F:+E:"传进搜刮源*************
*************newsearch.keyword="汇编"关头词*************
*************newsearch.Search入手下手搜刮*************
*************Setnewsearch=Nothing停止*************
*************Copyright(c)醉雨梧桐小站*************
*************http://btyz.51web.cn/*************
*************************************************************
ClassSearchFile
dimFolders传进相对路径,多路径利用+号毗连,不克不及有空格
dimkeyword传进关头词
dimobjFso界说全局变量
dimCounter界说全局变量,搜刮了局的数量
*****************初始化**************************************
PrivateSubClass_Initialize
SetobjFso=Server.CreateObject("Scripting.FileSystemObject")
Counter=0初始化计数器
EndSub
************************************************************
PrivateSubClass_Terminate
SetobjFso=Nothing
EndSub
**************私有成员,挪用的办法***************************
FunctionSearch
Folders=split(Folders,"+")转化为数组
keyword=trim(keyword)往失落前后空格
ifkeyword=""then
Response.Write("<fontcolor=red>关头字不克不及为空</font><br/>")
exitFunction
endif
判别是不是包括不法字符
flag=instr(keyword,"")orinstr(keyword,"/")
flag=flagorinstr(keyword,":")
flag=flagorinstr(keyword,"|")
flag=flagorinstr(keyword,"&")
ifflagthen关头字中不克不及包括/:|&
Response.Write("<fontcolor=red>关头字不克不及包括/:|&</font><br/>")
ExitFunction假如包括有这个则加入
endif
多路径搜刮
dimi
fori=0toubound(Folders)
CallGetAllFile(Folders(i))挪用轮回递回函数
next
Response.Write("共搜刮到<fontcolor=red>"&Counter&"</font>个了局")
EndFunction
***************历遍文件和文件夹******************************
PrivateFunctionGetAllFile(Folder)
dimobjFd,objFs,objFf
SetobjFd=objFso.GetFolder(Folder)
SetobjFs=objFd.SubFolders
SetobjFf=objFd.Files
历遍子文件夹
dimstrFdName声明子文件夹名
*********历遍子文件夹******
onerrorresumenext
ForEachOneDirInobjFs
strFdName=OneDir.Name
体系文件夹不在历遍之列
IfstrFdName"Config.Msi"EQVstrFdName"RECYCLED"EQVstrFdName"RECYCLER"EQVstrFdName"SystemVolumeInformation"Then
SFN=Folder&""&strFdName相对路径
CallGetAllFile(SFN)挪用递回
EndIf
Next
dimstrFlName
**********历遍文件********
ForEachOneFileInobjFf
strFlName=OneFile.Name
desktop.ini和folder.htt不在列取局限
IfstrFlName"desktop.ini"EQVstrFlName"folder.htt"Then
FN=Folder&""&strFlName
Counter=Counter+ColorOn(FN)
EndIf
Next
***************************
封闭各工具实例
SetobjFd=Nothing
SetobjFs=Nothing
SetobjFf=Nothing
EndFunction
*********************天生婚配形式***********************************
PrivateFunctionCreatePattern(keyword)
CreatePattern=keyword
CreatePattern=Replace(CreatePattern,".",".")
CreatePattern=Replace(CreatePattern,"+","+")
CreatePattern=Replace(CreatePattern,"(","(")
CreatePattern=Replace(CreatePattern,")",")")
CreatePattern=Replace(CreatePattern,"[","[")
CreatePattern=Replace(CreatePattern,"]","]")
CreatePattern=Replace(CreatePattern,"{","{")
CreatePattern=Replace(CreatePattern,"}","}")
CreatePattern=Replace(CreatePattern,"*","[^/]*")*号婚配
CreatePattern=Replace(CreatePattern,"?","[^/]{1}")?号婚配
CreatePattern="("&CreatePattern&")+"全体婚配
EndFunction
**************************搜刮并使关头字上色*************************
</p>由于ASP提供的是一对多的服务,所以用户的一些特殊需求很难得到满足。 |
|