|
-
Oct 1st, 2007, 08:18 AM
#1
Thread Starter
New Member
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
-
Oct 1st, 2007, 09:20 AM
#2
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...
_____________________________________________________________________
----If this post has helped you. Please take time to Rate it.
----If you've solved your problem, then please mark it as RESOLVED from Thread Tools.

-
Oct 1st, 2007, 01:25 PM
#3
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|