我有一个包含文件的文件夹,并且在脚本中:
Set shObj=CreateObject("shell.Application")
Set shFold=shObj.NameSpace(FolderName)
Set shFiles=shFold.Items
之后shFiles
打印:
For each printfile in shFiles
printfile.InvokeVerbEx "Print"
....so on...
Next
我需要对抓取的这些文件的列表进行排序,shFold.Items
以便我知道它们 For each printfile in shfiles
会按字母顺序打印出来。
有什么建议吗?
谢谢你。