Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Simple BATch rename... or is it

Featured Replies

A simple renaming of files becomes a serious headache, and I'm not sure why it's getting so complicated.

Folder:

C:\My Files

Example list of files:

Mr. Apple.removethis.txt
My.apples.are.rotten.removethis.txt
ThisAppleIsBad.removethis.doc
I Like Apple Pie because apples are great.(Awesome even).removethis.pdf
...

Obviously (by my examples), I want to remove .removethis from all of the file names.

Simple, right?

RENAME (like most DOS) gets confused with spaces in files and folders.

RENAME gets lost with the use of periods.

I can usually work around these issues, but for some reason everything I try causes different things to happen to different files, and every work-around I come up with falls flat somewhere.

I won't even try listing them, except my latest attempt.

BTW... I've manipulated where my quotes are... pretty much everywhere, and this is my best result.

I just know that I'm missing something really simple... but this whole mission was supposed to be simple.

BAT:

for %%i in (*.txt) do (
set MyFile=%%i
rename "%MyFile%" "%MyFile:~0, -11%.txt"
)

Results in:

C:\My Files>z-MyBatchFile.bat

C:\My Files>for %i in (*.txt) do (

set MyFile=%i

rename "" "~0, -11.txt"

)

C:\My Files>(

set MyFile=Mr. Apple.removethis.txt

rename "" "~0, -11.txt"

)

The system cannot find the file specified.

C:\My Files>(

set MyFile=My.apples.are.rotten.removethis.txt

rename "" "~0, -11.txt"

)

The system cannot find the file specified.

C:\My Files>

The extra space in %MyFile:~0, -11% is breaking the expression. Don't use a space after the comma.

Scratch that. "SETLOCAL EnableDelayedExpansion" is needed.

The following code should work. Notice the use of exclamation marks in place of some percent signs. And 11 becomes 15 to offset the file extension.

SETLOCAL EnableDelayedExpansion
for %%i in (*.txt) do (
set MyFile=%%i
rename "!MyFile!" "!MyFile:~0, -15!.txt"
)

This should also work, and doesn't require changing 11 to 15.

SETLOCAL EnableDelayedExpansion
for %%I in (*.txt) do (
set MyFile=%%~nI
rename "%%I" "!MyFile:~0, -11!%%~xI"
)

And this too, but will remove all instances of the text to remove regardless of where in the file name they're located.

SETLOCAL EnableDelayedExpansion
for %%i in (*.txt) do (
set MyFile=%%i
set Myfile=!MyFile:.removethis=!
rename "%%i" "!MyFile!"
)

Edited by 5eraph

  • Author

OMG OMG!

Life saver!

I'm sooo pleased!

So, this should work for all types of files (last code suggestion: changing *.txt to *.*)?

SETLOCAL EnableDelayedExpansion
for %%i in (*.*) do (
set MyFile=%%i
set Myfile=!MyFile:.removethis=!
rename "%%i" "!MyFile!"
)

Oh, and having .removethis, actually being .remove.this won't mess with it (having an additional period)?

Testing... testing... excited testing...

This would solve ALL of my renaming issues!

Tested and works! YES!

I bow to the master!

<later>

Ok, calm now. 35k+ files with the unwanted text... easy fix, never the problem.

Managing the constant flow of new files with the offending text? Big Pain. But no longer... thanks to you.

Edited by Pachilles

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.