autoitquestion Posted April 28, 2011 Share Posted April 28, 2011 (edited) Hi, How can I combine variable into wildcards? I tried: $search = FileFindFirstFile("C:\temp\*getName_$var*") and: $search = FileFindFirstFile("C:\temp\*getName_"&$var&"*") Both, did not help pls advice.. Edited April 28, 2011 by autoitquestion Link to comment Share on other sites More sharing options...
UEZ Posted April 28, 2011 Share Posted April 28, 2011 (edited) This worked for me, both files will be showed:I created these 2 files in c:\temp (Test_getname_001.txt and Test_getname_002.txt) and used this code from help file:$var = "00" ; Shows the filenames of all files in the current directory. $search = FileFindFirstFile("C:\temp\*getName_" & $var & "*") ; Check if the search was successful If $search = -1 Then MsgBox(0, "Error", "No files/directories matched the search pattern") Exit EndIf While 1 $file = FileFindNextFile($search) If @error Then ExitLoop MsgBox(4096, "File:", $file) WEnd ; Close the search handle FileClose($search)Br,UEZ Edited April 28, 2011 by UEZ nirmalsalem 1 Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ Link to comment Share on other sites More sharing options...
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