Skip to content

Incrementing multiple folders numbers at once using Node.js

How I solved a little folders management problem

I had a problem.

I was creating a large number of folders formatted like this:

1-yo
2-hey
3-cool
4-hi
5-whatsup

A number followed by a dash, and a string.

I got up to 40 of these, and I realized I had to put one in the middle, like this:

1-yo
2-hey
3-NEWONE
3-cool
4-hi
5-whatsup

The problem was that I had to change all the numbers of the folders that now were supposed to follow the 3-NEWONE folder.

I wanted an end result like this, where all the numbers following the new entry are incremented:

1-yo
2-hey
3-NEWONE
4-cool
5-hi
6-whatsup

I did this manually once, then I realized I was definitely going to repeat this process in the future, so I made a Node.js command line app to automatize it.

I called the file increment.js and I decided to take a command line argument to set the number I wanted to start from, like this:

node rename.js 4

Getting the number is simple, we get it from process.argv:

const args = process.argv.slice(2)
const startingNumber = args[0]

If no number is present, we’re going to show an error and end the program:

if (!startingNumber) {
  console.log('Add a number argument')
  return
}

Now that we have this number, we can start getting the folder names we need to increment. The script will be positioned in the same folder that contains all the subfolders, so we can just read from ./, which means this folder.

This is how we can get the names of all the files and subfolders contained in the current folder:

const fs = require('fs')

const folders = fs
  .readdirSync('./')
  .map(fileName => {
    return fileName
  })

Let’s filter this to make sure we only get the folders:

const fs = require('fs')

const isFolder = fileName => {
  return !fs.lstatSync(fileName).isFile()
}

const folders = fs
  .readdirSync('./')
  .map(fileName => {
    return fileName
  })
  .filter(isFolder)

Next we can iterate through the folders list:

folders.map(folder => {

})

I extract the number from the folder:

folders.map(folder => {
  const result = folder.match(/(\d)+/)
})

And if there’s a match (the folder has a number in the name), I extract it and transform it from a string into a number:

folders.map(folder => {
  const result = folder.match(/(\d)+/)
  if (result !== null) {
    const num = parseInt(result[0])
  }
})

Finally, if the number is higher than the one we pass as argument, we rename the folder name incrementing the number:

folders.map(folder => {
  const result = folder.match(/(\d)+/)
  if (result !== null) {
    const num = parseInt(result[0])
    if (num >= startingNumber) {
      fs.renameSync(folder, folder.split(num).join(num + 1))
    }
  }
})

That’s it! Here’s the final source code of our little CLI app:

const fs = require('fs')

const args = process.argv.slice(2)
const startingNumber = args[0]
if (!startingNumber) {
  console.log('Add a number argument')
  return
}

const isFolder = fileName => {
  return !fs.lstatSync(fileName).isFile()
}

const folders = fs
  .readdirSync('./')
  .map(fileName => {
    return fileName
  })
  .filter(isFolder)

folders.map(folder => {
  const result = folder.match(/(\d)+/)
  if (result !== null) {
    const num = parseInt(result[0])
    if (num >= startingNumber) {
      fs.renameSync(folder, folder.split(num).join(num + 1))
    }
  }
})

→ Get my Node.js Handbook

download all my books for free

  • javascript handbook
  • typescript handbook
  • css handbook
  • node.js handbook
  • astro handbook
  • html handbook
  • next.js pages router handbook
  • alpine.js handbook
  • htmx handbook
  • react handbook
  • sql handbook
  • git cheat sheet
  • laravel handbook
  • express handbook
  • swift handbook
  • go handbook
  • php handbook
  • python handbook
  • cli handbook
  • c handbook

subscribe to my newsletter to get them

Terms: by subscribing to the newsletter you agree the following terms and conditions and privacy policy. The aim of the newsletter is to keep you up to date about new tutorials, new book releases or courses organized by Flavio. If you wish to unsubscribe from the newsletter, you can click the unsubscribe link that's present at the bottom of each email, anytime. I will not communicate/spread/publish or otherwise give away your address. Your email address is the only personal information collected, and it's only collected for the primary purpose of keeping you informed through the newsletter. It's stored in a secure server based in the EU. You can contact Flavio by emailing [email protected]. These terms and conditions are governed by the laws in force in Italy and you unconditionally submit to the jurisdiction of the courts of Italy.

Related posts about node: