选择对话框
; 多选的例子: FileSelectFile, files, M3 ; M3 = 选择多个现有文件. if files = { MsgBox, The user pressed cancel. return } Loop, parse, files, `n { if a_index = 1 MsgBox, The selected files are all contained in %A_LoopField%. else { MsgBox, 4, , The next file is %A_LoopField%. Continue? IfMsgBox, No, break } } return