上一篇:FSO操作示例(给初学者) >>
同文件夹内文本搜索器(vbs)
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<SCRIPT language=vbscript id=clientEventHandlersVBS>
<!--
Dim fso, f, f1, fc,fn,s,uf1,ufn
Sub B1_onclick
fn=T1.value @#@#
pn=mid(location.pathname,2,len(location.pathname)-14)
ShowFolderList(pn)
End Sub
Function ShowFolderList(path)
@#@#msgbox path
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.GetFolder(path)
Set fc = f.Files
@#@# ufn=ucase(fn)
For Each f1 in fc
filespec= path & f1.name
ReadEntireFile(filespec)
@#@# uf1=ucase(f1.name)
@#@# if instr(uf1,ufn) <> 0 then
@#@# s=s & "<a href=" & path & f1.name & ">" & f1.name & "</a><br>"
@#@# end if
Next
document.write "已搜索到以下条目,请单击之。[墨伯编制 于2003年元月]<br>"
document.write s
set fc=nothing
set f=nothing
set fso=nothing
End Function
Function ReadEntireFile(filespec)
Const ForReading = 1
Dim fso, theFile, retstring
Set fso = CreateObject("Scripting.FileSystemObject")
Set theFile = fso.OpenTextFile(filespec, ForReading, False)
ufn=ucase(fn)
Do While theFile.AtEndOfStream<> True
retstring = theFile.ReadLine
uf1=ucase(retstring)
if instr(uf1,ufn) <> 0 then
s=s & "<a href=" & path & f1.name & ">" & f1.name & "</a><br>"
exit do
end if
Loop
theFile.Close
ReadEntireFile = s
End Function
-->
</SCRIPT>
</HEAD>
<BODY>
<P align=center><FONT color=#000000 size=6>请输入要搜索[在正文中包含]的关键词(</FONT><FONT
color=#000000 size=3>忽略大小写</FONT><FONT color=#000000 size=6>)</FONT> </P>
<P align=center><FONT size=2><FONT color=#000000>[墨伯编制
于2003年1月5日]</FONT> </FONT> </P>
<P align=center><INPUT name=T1><INPUT type=button value=搜索! name=B1></P>
<P align=center> </P></BODY></HTML>
下一篇:一个实用的FSO-实时统计在线人数 >>
相关文章:
- · 在线实时开通FTP&WEB
- · 对文件的操作--建立移动删除文件夹
- · 一个实用的FSO-实时统计在线人数
- · 利用FSO取得BMP,JPG,PNG,GIF文件信息
- · 三种禁用FileSystemObject组件的方法
- · 遍历目录以及目录下文件的函数
- · 在线修改Serv-U 4.2用户密码
- · asp 中常用的文件处理函数
- · 使用FSO把文本信息导入数据库
- · FSO+递归生成文件列表(xml)
- · 文件遍历排序函数
- · 利用FSO取得BMP,JPG,PNG,GIF文件信息
- · fso的一些特殊功能
- · 三种禁用FileSystemObject组件的方法
- · fso的一些特殊功能
- · 利用FSO取得BMP,JPG,PNG,GIF文件信息
- · 三种禁用FileSystemObject组件的方法
- · 清空iis log 中自己登录ip的vbs
- · fso的一些特殊功能
- · 使用FSO按文件大小浏览文件目录并进行删除操作
- · NAV导致IIS调用FSO失败的解决方法
- · 构建免受 FSO 威胁虚拟主机(三)
- · 构建免受 FSO 威胁虚拟主机(二)
- · 构建免受 FSO 威胁虚拟主机(一)
- · 类似于iis浏览的功能
- · 巧用FileSystem组件实现WEB应用中的本地特定打印
- · ASP中FSO对象对IIS WEB服务器数据安全的威胁及对策
- · 文件的读出 编辑 管理
- · 怎样判断一个盘上是否有文件
- · 用ASP实现对MP3曲目信息的操作
- · 关于用ADO STREAM做的无组件上传程序简单介绍
- · 从文本文件中读取信息并存储入数据库
- · 文本搜索
- · FileSystemObject处理文件
- · 设计 FileSystemObject
- · 处理驱动器和文件夹
- · 通过数组给您的文件排序
- · 用ASP做一个TOP COOL的站内搜索
