我有一个包含文件的文件夹,这是一个脚本:
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
将按字母顺序打印出来。
有什么建议吗?
谢谢。