08/11/09 13:01:34 cpoCFQe70
>>629
普通の7-Zip使えばrarとかにも問題なく使えるので修正。
[archivethumb.bat]
@echo off
set path="7z.exeのフォルダのパス";"nconvert.exeのフォルダのパス";%path%
:thumb
if "%~1"=="" goto :ed
7z x %1 -oC:\temp\tmp *.jpg *.png *.bmp *.gif -r -aoa
cd C:\temp\tmp
dir /b /s /o *.jpg *.png *.bmp *.gif>temp.txt
find /N /V "" < temp.txt >nlist.txt
for /F "tokens=1,* delims=[]" %%A in (nlist.txt) do if %%A LEQ 1 echo %%B>>pic1.txt
for /F "delims=" %%A in (pic1.txt) do nconvert -quiet -32bits -o "c:\temp\thumb.jpg" -ratio -rtype lanczos -resize 160 120 "%%A"
Type c:\temp\thumb.jpg > "%~1:thumbnail.jpg"
rmdir C:\temp\tmp /q /s
shift
goto thumb
:ed
"XFのパス" Refresh:2
goto :eof
気が付くまでUnifyZipでちまちま変換してました・・・