当前位置: 首页 > 图文教程 > 脚本技术 > VBScript > 一个扩展时间段的dir命令的vbs脚本

VBScript
查看SQL状态的vbs
vbs 字符统计功能模块
重新安装ie的一个vbs
中文姓名笔画计算(VBS脚本版)
VBS 数字转英文代码
清除垃圾的VBS文件 自动查找多个盘
math.vbs 自然数n的n次方的的和或积的级数
encrypt.vbs 内容加密vbs实现代码
一段病毒常用的VBS代码
VBS相册生成脚本[
VBS教程:运算符-连接运算符 (&)
黑客必须要知道的几个vbs文件代码
用vbs实现虚拟主机和域名查循的脚本
reg2vbs.vbs 将Reg文件转换为VBS文件保存 IT学习网修正版本
vbscript语句中“&H”专用于16进制数表示
按键精灵 脚本-学习VBS的一个不错的教程
reg2vbs.vbs 将Reg文件转换为VBS文件保存修正版本
一个可以删除指定天数文件的vbs脚本
CreateWeb.vbs 代码
N年前的两个脚本%5c暴库

VBScript 中的 一个扩展时间段的dir命令的vbs脚本


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-11   浏览: 82 ::
收藏到网摘: n/a

CMD下的dir好像没法列出从某段时间到某段时间的文件,所以写了这个小东东,方便根据我们的要求显示数据 set Arg=Wscript.Arguments
If Arg.Count=0 then
Wscript.echo chr(9)&chr(9)&space(4)&"Xdir v0.1"
Wscript.echo ""
Wscript.echo chr(9)&"cscript dir.vbs path time1 time2 ext"
Wscript.echo chr(9)&"cscript dir.vbs d:\test 20080101 20080430 doc"
Wscript.Quit
End If
Path=Arg(0)
Time1=Arg(1)
Time2=Arg(2)
Ext=Arg(3)
FileTotal = 0
DirTotal = 0
FileTotalsize=0
TimeSpend = Timer
myFind Path
TimeSpend = round(Timer - TimeSpend,2)
txtResult = "搜索完成!" & vbCrLf & "共找到文件:" & FileTotal & "个." & vbCrLf & "共搜索目录:" & DirTotal & "个." &vbcrlf&"文件总数大小"&FormatNumber(FileTotalsize/1024,0)&"kB"& vbCrLf & "用时:" & TimeSpend & "秒."
wscript.echo txtResult
Sub myFind(ByVal thePath)
Dim fso, myFolder, myFile, curFolder
Set fso = wscript.CreateObject("scripting.filesystemobject")
Set curFolders = fso.getfolder(thePath)
DirTotal = DirTotal + 1
If curFolders.Files.Count > 0 Then
For Each myFile In curFolders.Files
If InStr(1, LCase(Fso.GetExtensionName(myFile.Name)), ext) > 0 And Gtime(myFile.DateCreated) >Time1 And Gtime(myFile.DateCreated)<Time2 Then
wscript.echo FormatPath(thePath) & "\" & myFile.Name
FileTotal = FileTotal + 1
FileTotalsize = FileTotalsize + myFile.size
End If
Next
End If
If curFolders.subfolders.Count > 0 Then
For Each myFolder In curFolders.subfolders
myFind FormatPath(thePath) & "\" & myFolder.Name
Next
End If
End Sub
Function FormatPath(ByVal thePath)
thePath = Trim(thePath)
FormatPath = thePath
If Right(thePath, 1) = "\" Then FormatPath = Mid(thePath, 1, Len(thePath) - 1)
End Function

Function Gtime(str)
str=FormatDateTime(str,2)
str1=Split(str,"-",-1,1)
If len(str1(1))=1 then str11="0"&str1(1)
If len(str1(2))=1 then str12="0"&str1(2)
Gtime=str1(0)&str11&str12
End Function