Re: I want to remove a particular extension from all the files
On Tue, 13 May 2008 03:35:19 -0700 (PDT), Sanchit
<sanchitgupta.1@gmail.com> wrote:
>In certain folder of mine.... All the files and folder have
>extension .bd.ren . Thus if it is an image file its extesnion is
>jpg.bd.ren
>
>Please tell me how can I remove .bd.ren extension fromname of all
>files and folder
>
>Thanks
>Sanchit
Re: I want to remove a particular extension from all the files
On May 13, 3:35 pm, Sanchit <sanchitgupt...@gmail.com> wrote:
> In certain folder of mine.... All the files and folder have
> extension .bd.ren . Thus if it is an image file its extesnion is
> jpg.bd.ren
>
> Please tell me how can I remove .bd.ren extension fromname of all
> files and folder
>
> Thanks
> Sanchit
so if the file names are
k.jpg.bd.ren
k.txt.bd.ren
this batch script will do it
@echo off
pushd "c:\temp"
for /f "tokens=1-4 delims=." %%a in ('dir /b /a-d') do ren "%%a.%%b.%
%c.%%d" "%%a.%%b"