home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / FileCopy.au3 < prev    next >
Text File  |  2004-09-22  |  143b  |  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.