<cfzip action="unzip" file="C:\test.zip" destination="c:\temp\">
<cfzipparam filter="*.xml">
</cfzip>
in ACF, it will unzip all the xml files (in test.zip) to c:\temp
in Lucee 5, it throws error “invalid attribute combination”
Windows
Lucee 5.2.4 (did not try in Lucee 4.5.5)
try this
<cfzip action="unzip" file="C:\test.zip" destination="c:\temp\" filter="*.xml">
</cfzip>
I've analyzed this ticket & confirmed the issue happened on lucee version. Using cfzipparam with attribute throwing error "invalid attribute combination". But filter working fine with cfzip tag. will confirm this issue.
Pull request: https://github.com/lucee/Lucee/pull/346
also entrypath was fixed alongside filter.