wildcard file copy possible?
Hi,
I am currently working on a project with which I have to distribute some mpg's. Now I want to do the following:
In my MPG folder are say 10 mpgs, I don't want these to be included in the installer because of dramatic installer size increase but I want to distribute them next to my installer like this:
CreateDirectory $INSTDIR\Mpg
CopyFiles /SILENT Mpg\GEC_110100.mpg $INSTDIR\Mpg\GEC_110100.mpg 127116
CopyFiles /SILENT Mpg\GEC_110200.mpg $INSTDIR\Mpg\GEC_110200.mpg 93648
but I want this to be done in one rule so this installer doesn't have to be edited every time the contents of the MPG folder are different. So I thought, do it like this:
CreateDirectory $INSTDIR\Mpg
CopyFiles /SILENT Mpg*.* $INSTDIR\Mpg\*.*
But this syntax doesn't work. Does anyone know how to accomplish this?
thnx
Tom van Gemert