Jump to content

Recommended Posts

Posted

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

Posted

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
Posted (edited)

Hi

its just to replicate a folder with sub folders (make a copy of a templates folder) ,but this works anyway

cheers

Edited by ea9000

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...