home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2005 November / PCWELT_11_2005.ISO / pcwsoft / autoit-v3-setup.exe / Examples / FileCopy.au3 < prev    next >
Encoding:
Text File  |  2004-09-22  |  143 b   |  6 lines

  1. FileCopy("C:\*.au3", "D:\mydir\*.*")
  2.  
  3. ; method to copy a folder (with its contents)
  4. DirCreate("C:\new")
  5. FileCopy("C:\old\*.*", "C:\new\")
  6.