Computing.Net > Forums > Programming > Rename Program

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

Rename Program

Reply to Message Icon

Name: mjtwomail
Date: November 7, 2009 at 08:26:20 Pacific
OS: Windows XP
Subcategory: Batch
Tags: rename, end, move, renamer
Comment:

Looking to batch rename files. Looking for free
renamer that can move part of the file name
from one place to another (front to end)

04.03.09 LOS ANGELES CA.doc

needs to change to

LOS ANGELES CA 04.03.09.doc

Can't find renamer program that has this "move
to end" feature - please help!



Sponsored Link
Ads by Google

Response Number 1
Name: IVO
Date: November 7, 2009 at 09:58:57 Pacific
Reply:

:: MYREN.BAT Usage: myren Folder_Name
@echo off
pushd %*
for %%i in (*.doc) do (
  for /F "tokens=1,*" %%j in ("%%~ni") do ren "%%i" "%%k %%j.do_"
 )
ren *.do_ *.doc
popd
:: End_Of_Batch


0

Response Number 2
Name: Mechanix2Go
Date: November 7, 2009 at 14:34:06 Pacific
Reply:

Hi IVO,

I like it.


=====================================
Helping others achieve escape felicity

M2


0

Response Number 3
Name: mjtwomail
Date: November 12, 2009 at 13:33:40 Pacific
Reply:

I have no idea what that means :) is there a free program that
can do it in non tech language?


0

Response Number 4
Name: nbrane
Date: November 12, 2009 at 14:15:07 Pacific
Reply:

select the entire contents of response #1, type ctrl-c, open Notepad, type ctrl-v, save it as (anything, use ivo's myren.bat):
alt-f,a,\windows\MyRen.bat then hit enter. Your free renamer program now exists as: myren


0

Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More






Use following form to reply to current message:

Login or Register to Reply
LoginRegister


Sponsored links

Ads by Google


Results for: Rename Program

batch rename www.computing.net/answers/programming/batch-rename-/14788.html

Make me a little program, please www.computing.net/answers/programming/make-me-a-little-program-please/3342.html

Replace Underlines with spaces www.computing.net/answers/programming/replace-underlines-with-spaces-/16420.html