请教 怎样可以获取指定目录里面的所有目录名字
如题:怎样可以获取
指定目录里面的所有目录名字 你所说的是指定目录里的子目录名还是文件名? #Include <File.au3>
_FileListToArray($sPath [, $sFilter = "*" [, $iFlag = 0]]) {:face (327):}顶个 刚看完,把这个函数也了解了
#include <File.au3>
#include <Array.au3>
Local $FileList = _FileListToArray(@DesktopDir)
If @error = 1 Then
MsgBox(4096, "", "No Folders Found.")
Exit
EndIf
If @error = 4 Then
MsgBox(4096, "", "No Files Found.")
Exit
EndIf
_ArrayDisplay($FileList, "$FileList")
谢谢你们的提问和回答。{:face (239):}
页:
[1]