All pastes #2072992 Raw Edit

Someone

public text v1 · immutable
#2072992 ·published 2011-05-31 23:12 UTC
rendered paste body
set wd=f:\temp
set od=f:\snes
:--------
@echo off
if not exist "%~dp0\7z.exe" (
  echo 7z EXE/DLL missing. Place them next to this script and start again.
  pause
  exit )
for /f "tokens=*" %%i in (
'dir /b /s /a-d "%~1\*.7z"'
) do (
  "%~dp0\7z.exe" e "%%i" -o"%wd%\tempext\"
  if not exist "%od%\%%~pi\" md "%od%\%%~pi\"
    "%~dp0\7z.exe" a -t7z -mx0 -md=6m "%wd%\%%~ni.7z" "%wd%\tempext\*"
    move "%wd%\%%~ni.7z" "%od%\%%~pi\"
  rd /q /s "%wd%\tempext\"
)