请教如何递归的问题??????
比如WINDOWS目录下 递归此目录下的所有目录名称 不是文件名!!!!! for 套 _filelisttoarray("",*,2) #include <File.au3>_FileRecur(@windowsDir)
msgBox(64, '', 'done')
Func _FileRecur($_Path)
$folder = _FileListToArray($_Path, "*", 2)
If not IsArray($folder) then return 0
For $o = 1 to $folder
msgBox(0, '', $_Path & "\" & $folder[$o])
_FileRecur($_Path & "\" & $folder[$o])
Next
EndFunc ;==>_FileRecur() 如果要把这些数据全部保存起来 怎么做呢? 大狭们 帮帮忙啊 源码区里有函数,直接用 在那啊 给个连接 谢谢 自己不想 就是一个要 有才 呵呵 刚刚入门啊 需要大家的指点啊 http://www.autoitx.com/forum.php?mod=viewthread&tid=480&extra=page%3D3
这是按扩展名列表的,里面有关于文件夹的
页:
[1]