
It can extract the date and shooting time information from your file metadata to include in file renaming with the tag-based feature. The Better Finder Rename is especially great for photographers. It can read a wide variety of image, movie, location, and camera metadata that you can then use in your file renaming. These tags can be used to give your files more meaningful names. It extracts and uses a lot of information from your files and converts it into tags. Rename, organise and manage files.Advanced options.User-friendly interface.Supports all major RAW file formats.Instant preview and change highlighting.Drag and drop re-ordering.Tag-based renaming.Create renaming pre-sets.Ī Better Finder Rename's advanced capabilities in tag-based renaming is one of its best features. You can also create pre-sets for common renaming rules to save your time. Drag and drop allows you to quickly add and reorder files. It is easy to use, yet it offers advanced sequencing and time- and date features. It offers 15 categories that cover all the character, position and conversion options you may need. You can even preview changes before they are applied, which allows you to avoid costly mistakes and save time.Ĭomprehensive file renaming is easy with A Better Finder. It offers a simple interface that is easy to use, but also supports advanced file organisation tasks.
#A BETTER FINDER RENAME REMOVE DASHES CODE#
On a positive result remove ECHO , save the batch file and run it once again to really rename the files.įor understanding the used commands and how they work, open a command prompt window, execute there the following commands, and read entirely all help pages displayed for each command very carefully.īy the way: There are GUI applications like shareware file manager Total Commander which make it possible to do such file rename operations also for people with no experience in writing code using just the computer mouse.A Better Finder Rename is a complete renaming solution that organizes, renames and manages your files. Run this batch file and verify if the output rename command lines would produce what you expect.

Note: There is ECHO left to command ren in fourth line to just output the rename command instead of really doing the rename. Set "SourceFolder=C:\Temp\TV Shows\Greys Anatomy"įor /F "delims=" %%I in ('dir "%SourceFolder%\Grey*Anatomy*" /A-D-H /B /S 2^>nul') do (įor /F "eol=| tokens=2*" %%A in ("%%~nxI") do ECHO ren "%%I" "Greys Anatomy - %%B"
#A BETTER FINDER RENAME REMOVE DASHES FULL#
I suggest to use a batch file with following code on which the second line must be adapted by you as you have not posted full qualified path of the files to modify: off For that reason command REN takes also the next character S and renames Grey's Anatomy S01E01 with this command line to Greys Anatomy - 01E01 with S missing. The number of characters in current file name up to * are 15 while the number of characters in new file name up to * are just 14.

So the correct command line to use would be with wildcard * inside the double quoted first and second argument strings: ren "Grey's Anatomy *" "Greys Anatomy - *"īut this command line does not work as you want it.


The command syntax is: Command name ren, SPACE, argument string for file(s)/folder(s) to rename optionally with path enclosed in double quotes, SPACE, argument string for new file/folder name(s) enclosed in double quotes always without path.
