Every day we offer FREE licensed software you’d have to buy otherwise.
RenameKit 1.0.0 (Win&Mac) was available as a giveaway on August 3, 2024!
RenameKit is a versatile and powerful bulk rename utility designed to streamline and simplify the process of renaming large volumes of files. Whether you are a photographer, videographer, musician, or anyone who needs to manage and organize files efficiently, RenameKit provides an array of advanced features to meet your needs.
RenameKit supports renaming multiple files simultaneously, saving time and effort.
RenamaKit supports importing a wide range of file types, including documents, images, audio, and video files.
You can create and apply custom naming patterns to suit your specific needs. This includes adding prefixes and suffixes, adding sequential numbers, changing extensions and more.
You can also add detailed metadata to filenames. You can include file, image, audio, and video information, such as file size, directory name, creation time, modification time, last access time, image resolution, audio duration, and video frame rate.
Windows 7/ 8/ 8.1/ 10/ 11 (x32/x64); MacOS: macOS V14 (Sonoma), macOS V13 (Ventura), macOS V12 (Monterey), macOS v11 (Big Sur), macOS v10.15 (Catalina)
150 MB
6 month license
9.95 per month
I prefer https://www.bulkrenameutility.co.uk/Version.php?Version=2.7.1.2. Been using for many years and is very comprehensive
Save | Cancel
Locate and Try "Rename Master"
Very powerful and free.
I am not affiliated, just a happy user
Save | Cancel
Thanks everyone for your suggestions - hope I responded to you all.
I was hoping to get a response from the programmer, but alas so far nothing from them...
Nick...
Save | Cancel
ReNamer v5 looks way more user friendly & is Free.
Save | Cancel
E2B2, I have this one (v7) and it works fine...
Save | Cancel
E2B2, apparently only the Lite edition is free... the full version is paid.
Save | Cancel
How can I remove a space followed by a name.
i.e. "Macbeth Camera1 John.mp4"
to "Macbeth Camera1.mp4"
Thanks,
Nick...
Save | Cancel
To be clear of what I need:
"Macbeth Camera1 John.mp4"
"Macbeth Camera1.mp4"
"Macbeth Camera2 Mary.mp4"
"Macbeth Camera2.mp4"
"Macbeth Camera3 Nick.mp4"
"Macbeth Camera3.mp4"
etc., etc..
Thanks,
Nick...
Save | Cancel
Nick, I would imagine you would Add replace rules for each specific string ending and include the file extension thus
Add find text " John.mp4" replace text ".mp4"
Add find text " Mary.mp4" replace text ".mp4" and so on... really this is not the best way to do that as you are creating find and replace rules for practically each file which is soo inefficient you might as well just rename files manually as it will involve less steps!
TK
Save | Cancel
Nick, With a BIG disclaimer that I cannot code, the closest I could come up with is using PowerToys PowerRename with Find: (\w+\s)(\w+\s).*
Replace: $1$2.mp4
and Use Regular Expressions checked. That however does leave a space after Camera#. It's admittedly a kludge but that could be removed with a 2nd rename using:
Find: .{5}$
Replace: .mp4
learn.microsoft.com/en-us/windows/powertoys/powerrename
Save | Cancel
Hi Nick!
If the list of names is limited then you add them all separately under "Replace strings".
Simply add ' Nick' (make sure to include the leading blank) to "Find Text" field, and just leave the "Replace To" field as blank.
Repeat with every name.
Verify the results in the preview table.
Save | Cancel
Nick,
I'd try using the replace string if you have multiple files with the same name. In the "find text" section, enter in " John" (there is a space just before John) and in the "replace to" section, leave it completely blank. If the software is designed properly, this should take the space and name and replace it with nothing, in theory removing it from the file name.
I'd probably create a couple text files with similar names like you want to rename and test this out on them before running it on your live files.
Other batch renaming software I've used in the past has had the option of deleting X-number of characters from the beginning or end of a file name, though in the provided screenshots on the software above, I don't see that as an option.
Save | Cancel
Nick,
Open a text editor like Notepad.
Copy and paste the following script into the editor:
batch
@echo off
setlocal enabledelayedexpansion
REM Change to the directory containing the files
cd /d "C:\path\to\your\files"
for %%f in (*.mp4) do (
set "filename=%%~nf"
set "extension=%%~xf"
REM Remove the last space and name part before the extension
for /f "tokens=1,* delims= " %%a in ("!filename!") do (
set "newname=%%a!extension!"
ren "%%f" "!newname!"
)
)
endlocal
Replace "C:\path\to\your\files" with the actual path to your directory containing the files.
Save the file with a .bat extension, for example, rename_files.bat.
Double-click the .bat file to run it.
Save | Cancel
Nick,
Batch file corrected
@echo off
setlocal enabledelayedexpansion
REM Change to the directory containing the files
cd /d "C:\path\to\your\files"
for %%f in (*.mp4) do (
set "filename=%%~nf"
set "extension=%%~xf"
REM Remove the last space and name part before the extension
for /f "tokens=1* delims= " %%a in ("!filename!") do (
set "base=%%a"
)
ren "%%f" "!base!!extension!"
)
endlocal
Save | Cancel
TK, Thanks, but that doesn't work..
Save | Cancel
mike, Thanks - but the idea is to use this program to do it.
Save | Cancel
twm, I tried that with both the ' quote as well as the double quotes _ as in "
Neither worked.
Thanks for the thought (ˆ◡ˆ)
Save | Cancel
Denis, I don't see a batch editor in this program ??
Save | Cancel
FeMaster, Tried this too - no luck with either type of quotes
Save | Cancel
Hi Nick,
You can use “{N*-*} File Name” and enter the starting and end character position of the range you want to modify.
e.g.
"Macbeth Camera1" "Macbeth Camera2" "Macbeth Camera3"
there are 15 characters (including space), so we need to type {N1-15} in the "Filename Patterns" panel.
Save | Cancel
You should explain why should we use this software while we can use ALWAYS FREE alternative such well-known Bulk Rename Utility (just google it)? Or any other open-source alternative such Ant Renamer, Siren, etc.?
Those free alternatives are capable to provide ALL features from your paid version. Additionally, the BRU has regular expression pattern matching, can use JavaScript to perform customized logic, consume much less storage, can create Undo batch file, etc.
Save | Cancel
Ferdinand, I am testing 'this' program not others.
Save | Cancel