如何用组数列出指定目录下有多少个子目录
本帖最后由 qq342252004 于 2009-9-3 09:04 编辑如何用组数列出指定目录下有多少个子目录再用MsgBox提示每个子目录的名字 #include <File.au3>
#include <array.au3>
$file = _FileListToArray("C:\KwDownload", "*", 2)
_ArrayDisplay($file)
For $i = 1 To $file
MsgBox(0, 0, $file[$i])
Next
页:
[1]