本帖最后由 chzj589 于 2022-11-8 07:39 编辑
#include <Array.au3>
#include <File.au3>
#include <MsgBoxConstants.au3>
Example()
Func Example()
; 使用默认参数返回 desktop(桌面) 目录中所有文件和文件夹的完整路径.
Local $aFileList = _FileListToArray(@ScriptDir, "*", 1)
;Local $aFileList = _FileListToArray(@ScriptDir, Default, Default, True)
If @error = 1 Then
MsgBox($MB_SYSTEMMODAL, "", "路径无效.")
Exit
EndIf
If @error = 4 Then
MsgBox($MB_SYSTEMMODAL, "", "未发现文件.")
Exit
EndIf
; 显示 _FileListToArray() 的返回结果.
_ArrayDisplay($aFileList, "文件清单")
EndFunc ;==>Example
|