Archive: Bulk file copying - howto ?


Bulk file copying - howto ?
Hi,

The installer we work on copies quite a big website tree into the instdir. Currently, we have as many 'File' statements in our .nsi as many files there are in website.
So our .nsi is 245 KBytes long. Is there a way to specify copying of entire tree in only a couple of lines ? This would give more scalability to our installation process...

Thank you in advance for your replies.


You can use wildcards in the File command, and /r to recurse subdirectories E.g.
File /r "c:\website\*"