Answer the question
In order to leave comments, you need to log in
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
Total Commander > File Search > Plugins.
: 100
@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
)
)
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 questionAsk a Question
731 491 924 answers to any question