Sardith 0 Posted June 15, 2006 Is it possible to use File Install to extract a folder to another destination? Ie. FileInstall("C:\materials", "C:\Program Files\Steam\SteamApps\vorlof\counter-strike source\cstrike\") Or is there another method for moving a folder to another directory? [font="Verdana"]Valik:Get it straight - I'm not here to say please, I'm here to help - if my help's not appreciated then lotsa luck, gentlemen.[/font] Share this post Link to post Share on other sites
Sardith 0 Posted June 15, 2006 (edited) I need to copy a folder along with it's sub folders inside to another directory, is that possible? FileCopy("C:\materials\*.*", "C:\Program Files\Steam\SteamApps\vorlof\counter-strike source\cstrike\") Which isn't working.. Figured it out, DirCopy($Wallhack, $Destination, 1) Edited June 15, 2006 by Sardith [font="Verdana"]Valik:Get it straight - I'm not here to say please, I'm here to help - if my help's not appreciated then lotsa luck, gentlemen.[/font] Share this post Link to post Share on other sites
mpjones 0 Posted June 15, 2006 from the help file. I auusme this is what u are looking for? DirCopy Copies a directory and all sub-directories and files (Similar to xcopy). DirCopy ( "source dir", "dest dir" [, flag] ) DirCopy("C:\My Documents", "C:\Backups\MyDocs", 1) Share this post Link to post Share on other sites
Briegel 0 Posted June 16, 2006 Is it possible to use File Install to extract a folder to another destination?Ie. FileInstall("C:\materials", "C:\Program Files\Steam\SteamApps\vorlof\counter-strike source\cstrike\")Or is there another method for moving a folder to another directory?What about zipfiles?1. zip "C:\materials\*.*"2. FileInstall("C:\materials\files.zip", "C:\Program Files\Steam\SteamApps\vorlof\counter-strike source\cstrike\files.zip")3. unzip the filesUse for example 7-Zip commandline. Share this post Link to post Share on other sites