Results 1 to 3 of 3

Thread: Inno Setup: copy multi-file to destination

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 2007
    Posts
    1

    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

  2. #2
    Frenzied Member some1uk03's Avatar
    Join Date
    Jun 2006
    Location
    London, UK
    Posts
    1,675

    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.



  3. #3
    Banned randem's Avatar
    Join Date
    Oct 2002
    Location
    Maui, Hawaii
    Posts
    11,385

    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
  •  



Click Here to Expand Forum to Full Width