autoitquestion 0 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 Share this post Link to post Share on other sites
UEZ 1,273 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 1 nirmalsalem reacted to this 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!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ Share this post Link to post Share on other sites