Inno Setup: copy multi-file to destination
Hello,
I'm trying to create an install file by Inno Setup.
For now, I only know that we have to write in [Files] tags one copy command for one file:
[Files]
Source: ..\Setup\MyFolder1\myFile.txt; DestDir: {app}\Setup\MyFolder1
But I have hundreds files to be copied so it takes to long time to do.
Could you tell me how we can specify a source file folder to be copied to install destination?
Thank you very much
Re: Inno Setup: copy multi-file to destination
try: ISTool..
Its a GUI version of Inno which is really helpfull to add your files etc...
Re: Inno Setup: copy multi-file to destination
You can use wildcards in the folder to copy large amounts of files in your script. Inno Script handles this well
Code:
[Files]
Source: ..\Setup\MyFolder1\*.*; DestDir: {app}\Setup\MyFolder1
or
Code:
[Files]
Source: ..\Setup\MyFolder1\*.txt; DestDir: {app}\Setup\MyFolder1