• expired

Free Download of Batch File Renamer 2.4 @ Giveaway of The Day

90

Batch File Renamer is a file renaming software, which renames many files with a single click with lots of options. The program can remove, insert and replace text in a file name. File name extensions can be uppercase, lowercase or sentence case, and can be indexed as "file-name1.jpg, file-name2.jpg" and lots of other renaming options. The software replaces any character, text, numeric digit in a file's name. Product retails for $29.

Please note: The software provides a 1-Year license.

*Might have to share on fb before you are allowed to download.

Related Stores

Giveaway of The Day
Giveaway of The Day

closed Comments

  • This appears renamer for pic files only.
    Any freeware for batch rename video files ?

  • I use Advanced Reamer, its free and has served me well over the years. Highly recommended: www.advancedrenamer.com

    • +2

      Advanced Reamer…. sounds painful :)

    • +3

      "I use Advanced Reamer,…."

      I don't think anyone was enquiring about your private life :)

    • Unfortunate typo..

    • lol, thanks autocorrect :/

    • +1

      I use Rename Master - very good but not content aware.

      • +1

        same, very happy with it

  • +10
  • +3

    If you are looking to rename your video media (TV Shows, Movies, Etc), I highly recommend FileBot (http://www.filebot.net/). Can easily be scripted to be included in an automated workflow.

    • Ha, filebot looks a lot better than the Python script I coded to do this for my Simpsons DVD rips.

      Thanks for the tip.

  • +5

    Yep http://www.bulkrenameutility.co.uk
    Always been free and does the job.

  • Meh… I wrote my own file renamer script using autohotkey. It only took about 50 lines of code.

    • Care to share?

      • +1

        Sure. The code's not pretty, but it works. It will allow you to change some of the text in the filename, and also change the extension. :)

        FromText =
        NewExt = *
        FileSelectFolder, FromDir, F:, 3, From Which Directory?
        if (FromDir = "")
        {
            msgbox,,, Function cancelled, 2
            exitapp
        }
        SplitPath, FromDir, F_FileNameExt, F_FileDir, F_FileExt, F_FileName, F_FileDrive
        FileSelectFolder, ToDir, F:, 3, To Which Directory?
        if (FromDir = "")
        {
            msgbox,,, Function cancelled, 2
            exitapp
        }
        SplitPath, ToDir, T_FileNameExt, T_FileDir, T_FileExt, T_FileName, T_FileDrive
        Inputbox, FromText,, Change filename text from-
        if not errorlevel
        {
            Inputbox, ToText,, Change filename text to-
            if errorlevel
            {
                FromText =
                ToText =
                msgbox,,, No text to be changed, 1
            }
        }
        else {
            FromText =
            ToText =
            msgbox,,, No text to be changed, 1
        }
        

        ChangeExt:
        Inputbox, NewExt,, Change Extension to-
        if errorlevel
        {
        NewExt = *
        msgbox,,, Keep same extension, 1
        }
        else if NewExt =
        {
        msgbox, 4,, New Extension is blank.`nAre you sure you want to remove the extension?
        ifmsgbox No
        goto, ChangeExt
        }

        MoveAll = no
        Counter = 0
        loop, %FromDir%\*.*     ;no sub folders
        {
            if A_LoopFileAttrib contains H,S
                continue
            SplitPath, a_LoopFileFullPath, FileNameExt, FileDir, FileExt, FileName, FileDrive
            if FromText <>
                stringreplace, FileName, FileName, %FromText%, %ToText%
            if NewExt <> *
                FileExt := NewExt
        
            Filemove, %FromDir%\%FileNameExt%, %ToDir%\%FileName%.%FileExt%
        
            Counter += 1
        }
        msgbox %Counter% File(s) Moved
        

        AppExit:
        exitapp

  • -1

    Or you could just use a 1-line shell script.

    • Care to share?

      • -1

        Google is your friend. You might want to start with "regular expressions".

  • +1

    I do not need "Batch file renamer" to rename batch files (*.bat)…

Login or Join to leave a comment