Archive: Is there a way too...


Is there a way too...
Is there a way to add like an entire directory? instead of doing a bunch of

File /Dir/SubDir/Filename.ext
File /Dir/SubDir/Filename.ext
File /Dir/SubDir/Filename.ext

Like somthin like..?

Dir /Dir/SubDir


SetOutPath $INSTDIR

File /r MyDir\SubDir
(writes $INSTDIR\SubDir)
or
File /r MyDir\SubDir\*.*
(writes $INSTDIR\*.*)

-Justin