GetFiles

返回一个字符集合,该集合包括指定目录下的所有文件名。

语法:

GetFiles(directory)

directory: 指定的目录,获得该目录下所有的文件名。

例如列出C盘根目录下所有的文件名:

For Each File As String In FileSys.GetFiles("C:\")
    Output.Show(File)

Next

 

 


本页地址:http://www.foxtable.com/webhelp/topics/0341.htm