VBS教程:对象-Files 集合
更新时间:2006年11月16日 00:00:00 作者:
Files 集合
文件夹中所有 File 对象的集合.
说明
以下代码举例说明如何获得 Folders 集合并使用 For Each...Next 语句枚举集合成员:
Function ShowFolderList(folderspec) Dim fso, f, f1, fc, s Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFolder(folderspec) Set fc = f.Files For Each f1 in fc s = s & f1.name s = s & "<BR>" Next ShowFolderList = sEnd Function
相关文章
VBS Shell.Application中ShellExecute的使用方法详解
最近在项目中偶然用到了使用VBS调用shell.application中的ShellExecute方法,在百度搜索一圈后发现很难找到关于这个方法的详细的中文教程,最后是在微软的官方文档中才找到了这个指令的详细英文教程,需要的朋友可以参考下2023-05-05
最新评论