Copying contents of a whole folder
Hi All,
I have a folder, the contents of which I need to copy using the installer script.
How do I do that in any way better than having one line per file
File fileA
File fileB
and so on ...
Is there a better way ?
Archive: Copying contents of a whole folder
Copying contents of a whole folder
Hi All,
I have a folder, the contents of which I need to copy using the installer script.
How do I do that in any way better than having one line per file
File fileA
File fileB
and so on ...
Is there a better way ?
SetOutPath $INSTDIR
File "C:\path\to\*.*"
-Stu
File /r "MyFolder"
The File /r "MyFolder" works fine. Thanks a lot Joost.
Ops, forgot bout that :)
I'm thinking of ye old 1.98
-Stu