Created
July 26, 2023 21:01
-
-
Save P-Bauer/e42b3f1bcbfc7ec39a170a170de2789a to your computer and use it in GitHub Desktop.
Replaces file spaces with underscores
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as fs from 'fs'; | |
const directoryPath = '/path/to/directory'; | |
fs.readdir(directoryPath, (err, files) => { | |
if (err) { | |
console.error('Error reading directory:', err); | |
} else { | |
files.forEach(file => { | |
if (file.includes(' ')) { | |
const newPath = file.replace(/ /g, '_'); | |
fs.rename(`${directoryPath}/${file}`, `${directoryPath}/${newPath}`, (err) => { | |
if (err) { | |
console.error(`Error renaming file ${file}:`, err); | |
} else { | |
console.log(`${file} renamed to ${newPath}`); | |
} | |
}); | |
} | |
}); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment