Okay, try this... I don't have a windows machine handy to test this, but it should be enough to get you on the right track at least:



@echo off
rem The directory containing the log files
SET EQLOGFILE=C:\PROGRA~1\EVERQU~1\eqlog_char_75.txt

rem The log storage directory
SET STORAGEDIR=C:\logs\charname\

rem Terminate if STORAGEDIR doesn't exist
If not exist %STORAGEDIR%\. goto END

rem Store current date in variable cdate
for /f "tokens=2-4 delims=/ " %%a in ('DATE /T') do set cdate=%%c%%a%%b

rem Do it.
move %EQLOGFILE% %STORAGEDIR%\%CDATE%.txt

rem End of batch
:END

rem Cleanup
set EQLOGFILE=
set STORAGEDIR=
set CDATE=