Jump to content

Recommended Posts

Posted

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>

Posted

is there a more simpel way to get filename from file if file.txt exists?

Why would you want to get the filename if that is what you already have ? :)

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
  • Recently Browsing   0 members

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