Watch the video:
Timestamps:
0:00 - Explanation
0:38 - What we're compressing
1:03 - Preparing
1:57 - Preparing script
3:50 - Speed
4:34 - Deleting files after compress
Need to compress tons of individual files into their own archives? Setting up a FastDL server for a game? Well, this video is the solution you’re looking for!
Tons of effort saved with one simple script.
Download 7-zip: https://www.7-zip.org/download.html
.bat from video: https://tcno.co/TroubleChute/dl/?dl=compress.bat&yt=PhtaPislmks
Script:
@echo off & setlocal enabledelayedexpansion
for %%v in (".nav") do (
7za a “%%v.bz2” “%%v”
)
for %%v in (".bsp") do (
7za a “%%v.bz2” “%%v”
)
pause