Skip to content

Instantly share code, notes, and snippets.

@P-Bauer
Created July 26, 2023 21:01
Show Gist options
  • Save P-Bauer/e42b3f1bcbfc7ec39a170a170de2789a to your computer and use it in GitHub Desktop.
Save P-Bauer/e42b3f1bcbfc7ec39a170a170de2789a to your computer and use it in GitHub Desktop.
Replaces file spaces with underscores
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