Inno has no built-in method for extracting files from anything other than its own archives (which usually compress better than 7Zip).
However, Inno Setup can use wildcards to include files for installation:
[Files] Source: "Documentation\*.*"; DestDir: "{app}/Documentation/";
If you have many small files, using the solidcompression flag will improve performance and compression size.
source share