

Note: The tree will always be visible at program startup, even if it was hidden when you closed the program. The "tree" can be removed to give you more space.

This is useful if you have located your folder and you are now doing lots of work in the one folder. This will collapse or expand the folder "tree". Note that you can refresh the contents of the selected branch by collapsing and re-expanding the branch. This will refresh the contents of the left-hand tree window. This will refresh the contents of the right-hand file-list window The path must exist (it will be validated) and it must map to a drive letter - UNC paths are not supported.
BATCH FILE RENAME TOOLS FULL
This option will display a pop-up window, allowing you to the type a full pathname to navigate to.
BATCH FILE RENAME TOOLS SOFTWARE
If you have a list of filenames on the clipboard (such as the output from DIR /B) then the software will try to select files which match the names from the clipboard. Handy for two-pass renames, where you want to rename a whole batch of files in one go, then rename "everything else" in another go. This will de-select all the files and folders in the file-list window.Īny entry which is currently selected will be de-selected, and vice-versa. This will quickly select all the files and folders in the file-list window. C -c-style Allow C-style extended characters (\xFF\0\t\n\r\\ etc.The actions menu provides you with a variety of shortcuts to speed up common tasks, and these are described below. B -binary Also search (and replace) in binary files (CAUTION) f -filename Find (and replace) filename instead of contents w -word Match whole word (uses C syntax, like grep) n -line-number Print line number before each line (1-based) v -invert Print lines NOT containing the find string i -ignore-case Case insensitive text comparison c -count Only show filenames, match counts and totals r -recursive Process sub-folders recursively q -quiet Suppress output to stdio / stderr h -help Show this help message (ignores other options) "Find And Replace Text" FART WORKS GREAT! can rename words in txt files too. With a little research and simple coding, these things can be done much mroe efficiently and quickly.įunny name and command line tool very powerful, very fast and extremely easy to use. As others have mentioned, the GUI is atrocious and not very intuitive. I personally don't care for the "Bulk Rename" app. Note that in my case, I had 2 delimiters (a dash and a dot). The tokens are the "parts" of the filename, the delims are the separators.

Note that when doing it this way, ALL parts of the filename are considered, including the extension of ".csv". To do this en-masse, I used the following code. I wanted the file date portion to be in y/m/d order, with the "name" part at the end so it would read like this: -name.csv In my case, I started out with a list of files named like so: name-01-02-2012.csv Like zdan, I output the list to a TXT file, then used tokens and delims to rename the files accordingly. It took some tinkering for my particular case, but a little research solved it. Like above, I did this by command line (using "cmd.exe" in Windows).
