ea9000 Posted August 12, 2010 Posted August 12, 2010 Hi All, I want to create a function to replace the content of set of files thats found in directory and sub directory ,any idea how to accomplish this? there is a link that has some demo GUI without code thanx in advance Func CopyAndSetAttribute() DirRemove(@ScriptDir & "\templates", @ScriptDir & "\temp") DirCopy(@ScriptDir & "\templates", @ScriptDir & "\temp", 1) $FileList = _FileListToArray(@ScriptDir & "\temp", "*", 2) If @error = 1 Then MsgBox(0, "", "No Folders Found.") Exit EndIf If @error = 4 Then MsgBox(0, "", "No Files Found.") Exit EndIf For $file In $FileList replaceinfile($file) Next
PsaltyDS Posted August 12, 2010 Posted August 12, 2010 DirRemove(@ScriptDir & "\templates", @ScriptDir & "\temp")What is the second parameter here meant to do? It's supposed to be Boolean (True/False) for recursion. Did you mean to have DirMove() there? Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
ea9000 Posted August 13, 2010 Author Posted August 13, 2010 (edited) Hi its just to replicate a folder with sub folders (make a copy of a templates folder) ,but this works anyway cheers Edited August 13, 2010 by ea9000
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