I
I
Ivan Ilyasov2019-11-01 14:58:44
Data archiving
Ivan Ilyasov, 2019-11-01 14:58:44

How to find out which files are compressed with lzx compression?

Given: Windows 10.0.14393, there are a number of folders and files on the computer. Where and what files - is unknown.
Task: Find out which files and folders are compressed by LZX.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
I
Ivan Ilyasov, 2019-11-01
@IvanIlyasov

Total Commander > File Search > Plugins.
: 100

compressedfiles.bat
@ECHO OFF
CD "C:\Some Folder\"
ECHO Listing NTFS compressed files:
for /F "delims=" %%a in ('DIR /A-D/B') do @(
 compact /A /I "%%a" | findstr /R ^................................C
)
for /F "delims=" %%a in ('DIR /AD/B/S') do @(
 for /F "delims=" %%b in ('DIR /A-D/B "%%a"') do @(
  ECHO Listing NTFS compressed files on: "%%a\"
  compact /A /I "%%a\%%b" | findstr /R ^................................C
 )
)

Then you can unpack using CompactGUI

R
rPman, 2019-11-01
@rPman

linux utility file. comes with a bunch of standard toolkits ported to windows, at least msys from mingw, at least cygwin, at least use the regular Windows subsystem for linux
The utility on the command line allows you to specify a file, displays its mime type by content.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question