Jump to content

function to return files names in sub directories


 Share

Recommended Posts

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

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...