feat: added extract all shortcut

This commit is contained in:
Gerard Gascón 2025-04-24 18:54:29 +02:00
parent 0606c834ae
commit 66dd6e61fa

14
extract_all.bat Normal file
View file

@ -0,0 +1,14 @@
@echo off
setlocal enabledelayedexpansion
set "SEVENZIP=C:\Program Files\7-Zip\7z.exe"
for %%F in (*.zip) do (
set "FOLDER=%%~nF"
echo Extracting %%F into folder !FOLDER!...
mkdir "!FOLDER!"
"%SEVENZIP%" x "%%F" -o"!FOLDER!" -y > nul
)
echo Done!
pause