[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[问题求助] vbs怎么按照时间顺序排列输出遍历的文件夹

本帖最后由 328612167 于 2018-12-5 09:59 编辑

vbs怎么按照时间顺序排列输出遍历的文件夹
  1. Set fs = CreateObject("Scripting.FileSystemObject")
  2. Set f = fs.GetFolder("c:\")
  3. Set fc = f.SubFolders
  4. nn = 1
  5. wjj = ""
  6. For Each f1 In fc
  7. wjj = wjj &vbcrlf& nn &" "&f1.DateCreated&" "&f1.Name
  8. nn=nn+1
  9. Next
  10. MsgBox wjj
  11. WScript.Quit
复制代码
在网上搜到这个贴但是报错
http://www.sdky.org/news/2018-04-06/108467.html
  1. Set objLogParser=CreateObject("MSUtil.LogQuery")
  2. Set objInputFormat=CreateObject("MSUtil.LogQuery.FileSystemInputFormat")
  3. objInputFormat.Recurse=0
  4. Set objOutputFormat=CreateObject("MSUtil.LogQuery.NativeOutputFormat")
  5. objOutputFormat.rtp=-1
  6. strQuery="SELECT Name,CreationTime FROM 'C:\*.*'"&_
  7. "WHERE NOT Attributes LIKE '%D%' ORDER BY CreationTime"
  8. objLogParser.ExecuteBatch strQuery,objInputFormat,objOutputFormat
复制代码

找不到捷径,还是用原始的循环比较吧

TOP

返回列表