tags:

views:

175

answers:

1

My Inno Setup script includes a directory:

[Files]
...
Source: C:\MyProg\Tools\*.*; Destdir: {app}\Tools
...

But sometimes this directory is empty and in that case Inno Setup stops with an error "No files matching ...".

My current workaround is adding an empty dummy file to that directory.

Can I make Inno Setup ignore this directory if it is empty?

+1  A: 

Did you try the skipifsourcedoesntexist flag?

[Files]
...
Source: C:\MyProg\Tools\*.*; Destdir: {app}\Tools; Flags: skipifsourcedoesntexist 
...
Timbo
All these years I'm using Inno Setup but I've never come across that flag :)
DR