Daniel Rikowski
Daniel Rikowski

Reputation: 72544

How can I make Inno Setup ignore empty directories?

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?

Upvotes: 12

Views: 3801

Answers (1)

Timbo
Timbo

Reputation: 28060

Did you try the skipifsourcedoesntexist flag?

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

Upvotes: 21

Related Questions