_DirCopy('C:\mpc', 'D:\Backnpc')
Func _DirCopy($SourceDir, $Destdir)
;说明:利用Shell对象来实现复制文件对话框
;作者:Sanhen
Local $Shell
Local $FOF_SIMPLEPROGRESS = 16
If Not FileExists($Destdir) Then DirCreate($Destdir)
$Shell = ObjCreate("shell.application")
$Shell.namespace($Destdir).CopyHere($SourceDir, $FOF_SIMPLEPROGRESS)
EndFunc ;==>_DirCopy