Archive: Using Wildcard to find file that starts with:


Using Wildcard to find file that starts with:
I have a file that I need to delete, it always starts with "Fallback to"

But it could be "Fallback to V3.2" or "Fallback to V2.2" etc... is there anyway I can do something like delete "$INSTDIR\Fallback to*.exe"


Seeing it typed out, I realize I can do:

;$R0 = "Fallback to V3.2"
StrCpy $R0 $R0 11
${If}$R0 = "Fallback to"

${EndIf}