Skip to content

Fix: Fixed issue where 7z archive files could not be previewed or compressed #17426

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 10, 2025
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/Files.App/Data/Models/CompressArchiveModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ public async Task<bool> RunCreationAsync()
//Use UTF-8 encoding.
//References: 7-zip chm --> Command Line Version --> Switches
//--> -m --> cu=[off | on].
compressor.CustomParameters.Add("cu", "on");
//See https://github.com/files-community/Files/issues/17257
if (FileFormat != ArchiveFormats.SevenZip)
compressor.CustomParameters.Add("cu", "on");

compressor.Compressing += Compressor_Compressing;
compressor.FileCompressionStarted += Compressor_FileCompressionStarted;
Expand Down