Click here to Skip to main content
6,916,824 members and growing! (15,191 online)
Email Password   helpLost your password?
Web Development » Client side scripting » General     Intermediate

Rename all files in a folder

By Guy Vider

Replace a string in the names of all the files in a certain folder
Javascript, Windows, Visual-Studio, Dev
Posted:30 Apr 2007
Views:22,367
Bookmarked:17 times
printPrint Friendly   add Share
      Discuss Discuss   Broken Article?Report  
10 votes for this article.
Popularity: 4.35 Rating: 4.35 out of 5
1 vote, 10.0%
1

2

3
5 votes, 50.0%
4
4 votes, 40.0%
5

Introduction

If you've ever had a directory full of files, all containing a certain string, and you wanted to replace/remove it, this is the script for you.

Background

My CD ripping software always leaves a folder full of files with the following name format CDName_Track_#_SongName.mp3. Since the folder name already carries the name of the CD and I know that every song is a track - I'd like to get rid of the prefix. It takes a minute for a CD with 5 tracks, 3 minutes for an average CD (15 tracks), and more if you rip several CDs... I decided to solve this creatively: a script that iterates through all files in a folder and replaces a string with another. Took 5 minutes to write - so I guess I'm ahead.

Using the code

Just copy the following code into a text file, rename it to have a ".js" extension (or just download the attached file) and set the following 3 parameters:

//////////////////////////////////////////

sFolderName = "D:\\Temp\\Mp3";
sStringToFind = "_Track_";
sStringToReplace = "";
//////////////////////////////////////////

Make sure you include double-\ in the folder name (C-type strings, in .NET I would have used a @).

If you just want to get rid of a string, make the third parameter an empty string.

Save the change file and double-click. In any Windows OS (beginning with Window 98 SE), the Windows Scripting Host (WSH), would execute the file.

Here's the entire code, it's pretty self explanatory:

var sFolderName, sStringToFind;
var nResult;

//////////////////////////////////////////

sFolderName = "D:\\Temp\\Mp3";
sStringToFind = "_Track_";
sStringToReplace = "";
//////////////////////////////////////////


nResult = renameFiles(sFolderName, sStringToFind, sStringToReplace);
WScript.Echo(nResult + " files renamed");

//    Function Name:    renameFiles

//    Parameters:

//    sFolder:    Folder Name

//    sString1:    String to search for

//    sString2:    String to replace

//    Returns:    Number of files renamed

function renameFiles(sFolder, sString1, sString2)
{
    var oFSO, oFile, oFolder;
    var re, index;
    var sName;
    var i = 0, n;

    oFSO = new ActiveXObject("Scripting.FileSystemObject");
    oFolder = oFSO.GetFolder(sFolder);
    try
    {

        index = new Enumerator(oFolder.Files);

        for (; !index.atEnd(); index.moveNext())
        {
            oFile = index.item();
            sName = oFile.Name;
            n = sName.indexOf(sString1);
            if(n != -1)
            {
                try
                {
                    sName = sName.substring(0, n) + sString2 + 
                            sName.substr(n + sString1.length);
                    oFile.Name = sName;
                    i++;
                }
                catch(e)
                {
                    WScript.Echo("Can not rename file " + sName + 
                            " because\n" + e.description);
                }
            }
        }
    }
    catch(e)
    {
        WScript.Echo("Could not access folder " + sFolder + 
                        " because\n" + e.description);
        return 0;
    }
    finally
    {
        oFSO = null;
        re = null;
        return i;
    }
}

Points of Interest

One warning: Antivirus software hates script files. McAfee warns about them as if they were the plague. Norton goes one step further and alters the registry so .js and .vbs files cannot be run. Be aware of it and rest assured - this is not a virus!

History

Things I may end up adding (if anyone is interested):

  • Regular expression, instead of a set string.
  • Recursing through a folder tree.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Guy Vider


Member
Currently, I manage the West Coast Professional Services team for a large company. Part of my job includes implementing solutions and developing "glue" applications.

I love RAD (Rapid Application Development) - specify a problem, come up with the solution, code it - and change later. This is where coding comes closest to art. Just let it flow...

If you want more biographical items, look at my LinkedIn profile at http://www.linkedin.com/in/gvider and if you'd like to see my opinion on other tech-related subjects, read my blog at http://www.guyvider.com.
Occupation: Product Manager
Location: United States United States

Other popular Client side scripting articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 6 of 6 (Total in Forum: 6) (Refresh)FirstPrevNext
GeneralCopy a server file into client pc Pinmemberjorgefos7:51 15 Apr '08  
GeneralRe: Copy a server file into client pc PinmemberGuy Vider8:06 15 Apr '08  
QuestionRegular Expression Pinmemberhuntercg2:37 17 Oct '07  
AnswerRe: Regular Expression PinmemberGuy Vider7:01 17 Oct '07  
GeneralsFolderName or sFolder Pinmemberprophetboy3:04 17 May '07  
GeneralRe: sFolderName or sFolder PinmemberGuy Vider6:42 17 May '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+PgUp/PgDown to switch pages.

PermaLink | Privacy | Terms of Use
Last Updated: 30 Apr 2007
Editor: Deeksha Shenoy
Copyright 2007 by Guy Vider
Everything else Copyright © CodeProject, 1999-2010
Web20 | Advertise on the Code Project