What is the best?
I want a program that can help me for example give a large list of files the name axx where xx should be a number (ie. 01, 02, etc)
any recommendations?
-
Spartan@HIDevolution Company Representative
-
Not sure it's the best but it is what I use... Free for home/personal use.
http://www.bulkrenameutility.co.uk/Main_Intro.phpSpartan@HIDevolution likes this. -
Spartan@HIDevolution Company Representative
gonna have to play around with it.
thank you -
-
Spartan@HIDevolution Company Representative
-
^ Some of it can be done from Explorer, command prompt and powershell... Some simple numbering where then numbers would show as (x) in the file name explorer can get the job done.
http://www.howtogeek.com/111859/how...s-in-windows-4-ways-to-rename-multiple-files/alexhawker and Spartan@HIDevolution like this. -
-
Starlight5 Yes, I'm a cat. What else is there to say, really?
+1 for Command Prompt
-
Michel Merlin likes this.
-
Starlight5 Yes, I'm a cat. What else is there to say, really?
@Rhodan I honestly don't remember the syntax of for ... loop in powershell, but know for sure it's doable.
-
xcopy is your best friend. There's lots of documentation and very powerful utility built into Windows using the command prompt. I've used it a lot in batch files and haven't found a file manipulation it couldn't do. Learning how all the flags work takes a little patience but once you get it, it's fun to use.
But if you want to do something simple see this article: http://www.howtogeek.com/111859/how...s-in-windows-4-ways-to-rename-multiple-files/Spartan@HIDevolution likes this. -
for %%f in (*.txt) do (
ren "%%~nf%%~xf" "%%~nf 1.1%%~xf"
)Jarhead and Starlight5 like this. -
I used this before to rename some mp3's on some music cd's I ripped that had the wrong naming schemes. It worked fine.
http://portableapps.com/apps/utilities/ant_renamer_portable -
Hello everyone!
I don't usually promote my stuff but I created a small application to rename my files in bulk and it would be really nice if someone else aside from me found it useful. (it's based on Thunar Bulk Renamer)
You can download it here: https://bitbucket.org/fidelt/just-another-bulk-renamer/downloads/JABR.zip
Simply unzip it and run 'jabr.exe'
-
I use the tool from Total Commander(select files and hit CTRL+M)...
dawsonkm and Spartan@HIDevolution like this. -
Tinderbox (UK) BAKED BEAN KING
I am looking for an app to rename my Anime, I need to add 001, 002, 003 ect 3 digit after the series name, if i do not name the files this way my android tablet get confused.//////////////////////////// sorry cat typing.
Like below
The file NAME is the same for the enitire directory.
NAME 001.mp4
NAME 002.mp4
NAME 003.mp4
EDIT: Sorted the free advancedrenamer app works great
https://www.advancedrenamer.com/
John.Last edited: Jun 29, 2016Spartan@HIDevolution likes this.
Best batch renaming program?
Discussion in 'Windows OS and Software' started by Spartan@HIDevolution, May 31, 2016.