T
Tom Lavedas
If you want 'abc.011.doc' I believe you will need to alter
the renaming to include the original extention (%~nI only
returns the file's name before the dot). That is, try ...
For /R %folder% %%I in (*.1?? *.2??) do (
echo rename %%~fI %%~nxI.doc)
Tom Lavedas
===========
the renaming to include the original extention (%~nI only
returns the file's name before the dot). That is, try ...
For /R %folder% %%I in (*.1?? *.2??) do (
echo rename %%~fI %%~nxI.doc)
Tom Lavedas
===========