1. Select file(s) to unrar.
2. Press a button (a hot key that would be associated with a script)
3. Open a beer
For those who are familiar with Windows Command Scripts here's an example of how it would look in a batch script:
Code: Select all
@REM ------- BEGIN demo.cmd ----------------
@setlocal
@echo off
set path="C:\Program Files\WinRAR\";%path%
for /F %%i in ('dir /s/b *.rar') do call :do_extract "%%i"
goto :eof
:do_extract
echo %1
mkdir %~1.extracted
pushd %~1.extracted
unrar e %1
popd
REM ------- END demo.cmd ------------------
XYplorer Beta Club
