Link to home
Start Free TrialLog in
Avatar of centurian102
centurian102

asked on

Batch file stumper

I am trying to write a command in a batch file that looks in a folder for the highest sequencial number, and renames it as the date.

IE, my backup program saves a file called BACKUP_000436.xml in a folder, and tomorrows will be BACKUP_000437.xml

Is there a command, that will look for the highest number, and when found, changes its name to the current date? such as BACKUP_032707, or even just the date.

Thanks
ASKER CERTIFIED SOLUTION
Avatar of SteveGTR
SteveGTR
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of centurian102
centurian102

ASKER

That didn't work, I inserted several pauses, but I still couldn't see where it wasn't working???
I tested it out on my XP/Pro machine and it worked fine.

What version of Windows do you have?

Did it issue any messages?

More information is required to help you.
I am running this on my server 2003





Here is what I'm getting




@echo off

setlocal

call :GETDATEPARTS "%date%"

set filePrefix=BACKUP_
set fileExt=.xml

set newFile=%filePrefix%%mm%%dd%%yy:~2%%fileExt%

if exist "%newFile%" echo File %newFile% has already been created for today.&goto :EOF

set fileMask=%filePrefix%*%fileExt%

for /f "tokens=*" %%a in ('dir /o-n /b /a-d "%fileMask%" 2^>NUL') do (
  echo Renaming %%a %newFile%
  ren "%%a" "%newFile%"
  goto :EOF
)

echo Could not locate any files matching %fileMask%

goto :EOF

:GETDATEPARTS

set dt=%~1
set tok=1-3

if "%dt:~0,1%" GTR "9" set tok=2-4

set yyyy=

for /f "tokens=%tok% delims=.:/-, " %%a in ('echo %~1') do (
  for /f "skip=1 tokens=2-4 delims=/-,()." %%x in ('echo.^|date') do set %%x=%%a&set %%y=%%b&set %%z=%%c
)

if not "%yyyy%"=="" set yy=%yyyy%

if 1%yy% LSS 1000 (if %yy% LSS 70 (set yy=20%yy%) else (set yy=19%yy%))
if 1%mm% LSS 100 set mm=0%mm%
if 1%dd% LSS 100 set dd=0%dd%

goto :EOF

C:\Program Files\VERITAS\Backup Exec\NT\Data>setlocal

C:\Program Files\VERITAS\Backup Exec\NT\Data>call :GETDATEPARTS "Tue 03/27/2007"


C:\Program Files\VERITAS\Backup Exec\NT\Data>set dt=Tue 03/27/2007

C:\Program Files\VERITAS\Backup Exec\NT\Data>set tok=1-3

C:\Program Files\VERITAS\Backup Exec\NT\Data>if "T" GTR "9" set tok=2-4

C:\Program Files\VERITAS\Backup Exec\NT\Data>set yyyy=

C:\Program Files\VERITAS\Backup Exec\NT\Data>pause
Press any key to continue . . .

C:\Program Files\VERITAS\Backup Exec\NT\Data>for /F "tokens=2-4 delims=.:/-, " %
a in ('echo Tue 03/27/2007') do (for /F "skip=1 tokens=2-4 delims=/-,()." %x in
('echo.|date') do set %x=%a  & set %y=%b  & set %z=%c )

C:\Program Files\VERITAS\Backup Exec\NT\Data>(for /F "skip=1 tokens=2-4 delims=/
-,()." %x in ('echo.|date') do set %x=03  & set %y=27  & set %z=2007 )

C:\Program Files\VERITAS\Backup Exec\NT\Data>set mm=03  & set dd=27  & set yy=20
07

C:\Program Files\VERITAS\Backup Exec\NT\Data>if not "" == "" set yy=

C:\Program Files\VERITAS\Backup Exec\NT\Data>pause
Press any key to continue . . .

C:\Program Files\VERITAS\Backup Exec\NT\Data>if 12007 LSS 1000 (if 2007 LSS 70 (
set yy=202007 )  else (set yy=192007 ) )

C:\Program Files\VERITAS\Backup Exec\NT\Data>if 103 LSS 100 set mm=003

C:\Program Files\VERITAS\Backup Exec\NT\Data>if 127 LSS 100 set dd=027

C:\Program Files\VERITAS\Backup Exec\NT\Data>pause
Press any key to continue . . .

C:\Program Files\VERITAS\Backup Exec\NT\Data>goto :EOF

C:\Program Files\VERITAS\Backup Exec\NT\Data>set filePrefix=BEX_CNTYBACKUP_

C:\Program Files\VERITAS\Backup Exec\NT\Data>set fileExt=.xml

C:\Program Files\VERITAS\Backup Exec\NT\Data>pause
Press any key to continue . . .


C:\Program Files\VERITAS\Backup Exec\NT\Data>set newFile=BEX_CNTYBACKUP_032707.x
ml

C:\Program Files\VERITAS\Backup Exec\NT\Data>if exist "BEX_CNTYBACKUP_032707.xml
" echo File BEX_CNTYBACKUP_032707.xml has already been created for today.  & got
o :EOF

C:\Program Files\VERITAS\Backup Exec\NT\Data>set fileMask=BEX_CNTYBACKUP_*.xml

C:\Program Files\VERITAS\Backup Exec\NT\Data>pause
Press any key to continue . . .
Please remove all debugging information you have placed in the batch processing.

I see you have changed certain aspects of the file, specifically filePrefix.

Please post the batch file as you are running it without the debugging information.

Also, please post any output without, if any.

We'll start from there.
The last request should read as:

Also, please post any output, if any.
Here it is, I changed file prefix,

The file names are as follows BEX_CNTYBACKUP_0043

there is no output



@echo off

setlocal

call :GETDATEPARTS "%date%"

set filePrefix=BEX_CNTYBACKUP_
set fileExt=.xml

set newFile=%filePrefix%%mm%%dd%%yy:~2%%fileExt%

if exist "%newFile%" echo File %newFile% has already been created for today.&goto :EOF

set fileMask=%filePrefix%*%fileExt%

for /f "tokens=*" %%a in ('dir /o-n /b /a-d "%fileMask%" 2^>NUL') do (
  echo Renaming %%a %newFile%
  ren "%%a" "%newFile%"
  goto :EOF
)

echo Could not locate any files matching %fileMask%

goto :EOF

:GETDATEPARTS

set dt=%~1
set tok=1-3

if "%dt:~0,1%" GTR "9" set tok=2-4

set yyyy=

for /f "tokens=%tok% delims=.:/-, " %%a in ('echo %~1') do (
  for /f "skip=1 tokens=2-4 delims=/-,()." %%x in ('echo.^|date') do set %%x=%%a&set %%y=%%b&set %%z=%%c
)

if not "%yyyy%"=="" set yy=%yyyy%

if 1%yy% LSS 1000 (if %yy% LSS 70 (set yy=20%yy%) else (set yy=19%yy%))
if 1%mm% LSS 100 set mm=0%mm%
if 1%dd% LSS 100 set dd=0%dd%

goto :EOF

Do you run the batch file from the directory where the files exist?
yes
I found a work around, Thanks for all the help

echo %date%
if %date:~0,1% GTR 9 echo %date% appears to have the 'day' && goto :Daydate
echo %date% doesn't have the dayname...
SET FDATE=%DATE:~0,2%-%DATE:~3,2%-%DATE:~6%
goto :setup
:Daydate
SET FDATE=%DATE:~4,2%-%DATE:~7,2%-%DATE:~10%
:setup

REN "BEX_CNTYBACKUP_*.xml" DailyBackup%FDATE%.xml

copy DailyBackup%FDATE%.xml Z:\

pause
good luck