SnArF Posted January 27, 2004 Posted January 27, 2004 How do I move/copy folders including subfolders My scripts: _ConsoleWriteLog | _FileArray2D
sconley Posted January 27, 2004 Posted January 27, 2004 (edited) To move a folder, use the FileMove function. Example: If not FileMove("c:\topfolder\folder1","c:\anotherfolder\folder1") msgbox(0,"Error","FileMove failed!") exit(1) endIf As with the Windows Move command, the source and destination must be on the same drive for this to work (at least my test showed it wouldn't work between drives.) To copy a folder you could run xcopy as follows (watch for line wrap in code below): runwait(@comspec & " /c xcopy /s/e/i c:\topfolder\folder1 c:\anotherfolder\folder1") If you have spaces in your paths you must enclose in quotes which looks confusing. Here is an example using variables: runwait(@comspec & ' /c xcopy /s/e/i "' & $Src_Folder & '" "' & $Dest_Folder & '"') Edited January 27, 2004 by sconley
SnArF Posted January 27, 2004 Author Posted January 27, 2004 Thanks, but strange that AutoIT has no commands to copy folders incl. subfolders My scripts: _ConsoleWriteLog | _FileArray2D
Valik Posted January 27, 2004 Posted January 27, 2004 (edited) FileCopy... Same syntax as FileMove (I think it is anyway). Edited January 27, 2004 by Valik
CyberSlug Posted January 27, 2004 Posted January 27, 2004 From the unofficial docs: "The destination directory must already exist." ; method to copy a folder (with its contents) DirCreate("C:\old") FileCopy("C:\old\*.*", "C:\new\") I think it will recurse on subfolders... Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
jpm Posted January 27, 2004 Posted January 27, 2004 From the unofficial docs: "The destination directory must already exist."; method to copy a folder (with its contents)DirCreate("C:\old")FileCopy("C:\old\*.*", "C:\new\")I think it will recurse on subfolders...No it will not,I try Jon Jon integrate an extension for solving this problem.You can find what I did in http://www.hiddensoft.com/fileman/users/jpm/Dbg-BastardPerhaps I will be more successful on day
Administrators Jon Posted January 27, 2004 Administrators Posted January 27, 2004 Looking at SHFileOperation, it seems to support recursive copy and move. I hate file functions, you can't add a single one without a chorus of "can it do folders" and bang, there goes another 1KB of code. Grrr Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
jpm Posted January 27, 2004 Posted January 27, 2004 Looking at SHFileOperation, it seems to support recursive copy and move.I hate file functions, you can't add a single one without a chorus of "can it do folders" and bang, there goes another 1KB of code. Grrr I don't think that my implemenation was giving 1k more
Administrators Jon Posted January 27, 2004 Administrators Posted January 27, 2004 I've not seen it. Unless it was in the .89-filemove you sent? Might be able to use SHFileOperation for the copy/move and get rid of loads of code. Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
kaamyab Posted September 16, 2014 Posted September 16, 2014 (edited) Hello to all How to script in all folders and sub-folders on the hard copy? Edited September 16, 2014 by kaamyab
BrewManNH Posted September 16, 2014 Posted September 16, 2014 This thread is 10 3/4 years old, not a great start. Look in the help file for DirCopy, BTW. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
BrewManNH Posted September 16, 2014 Posted September 16, 2014 I already did, open the help file and look for DirCopy. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now