Jump to content

FileFindFirstFile on subfolders is that posible?


 Share

Recommended Posts

can i make this to search subfolders also (like /s on dir f.ex)

<autoit>

$dir = 'c:\TEST'

FileChangeDir($Dir)

While 1

$search = FileFindFirstFile("*.txt")

$file = FileFindNextFile($search)

If NOT @error Then

MsgBox(4096, "File:", $file)

Exit

Else

Sleep("1000")

EndIf

WEnd

; Close the search handle

FileClose($search)

</autoit>

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...