Questions tagged [bulk-rename-utility]

free windows utility that allows you to easily batch rename files and folders based upon criteria

free windows utility that allows you to easily batch rename files and folders based upon criteria

8 questions
1
vote
1 answer

RegEX: match ([^A-Z]*) but stop if you find "foo"

I ran into a problem that I can't figure out how to fix. I have a series of video files with names like this: FooBar-tooGGG1 - s01e01 - (HW) - SomeText.mp4 So I have to make sure that spaces are added before capital letters BUT ONLY until "- s01e"…
Geass
  • 13
  • 5
1
vote
1 answer

How to find a variable length string, using RegEx

I am trying to use a bulk rename tool to strip off an ID from migrated documents. I am struggling with the Regex. Here is an example of some of the documents. KIN-CHV-SAL-MAP-001 (ID 594).pptx KIN-CHV-P18005-REP-001 R1 (ID 04).pdf I basically need…
0
votes
1 answer

Search directory tree and replace instances of a string with another string

EDIT: New Code thanks to the help of @Magoo @ECHO OFF SETLOCAL ENABLEDELAYEDEXPANSION echo NOTE: This will create all necessary project template folders. echo[ set /p projNumName=" Enter Project Number & Name (ex. 23-000_My Project…
0
votes
1 answer

Using RegEx (Bulk Rename Utility) to Rename Files While Keeping Dates in the Name

I'm pretty new to RegEx, but have been interested in it since I began using Bulk Rename Utility. I've used the other functions in the program, but seeing that RegEx is more complex, I'd like to see if it could solve my problem better. For example, I…
0
votes
1 answer

using regex I want to move everything in file name between () to middle and drop the ()

I have thousands of MP3 and MP4 that I would like to standardize. I am using Bulk Rename Utility Example below the desired lay out is Artist - Title some of them are laid out as Artist - Title (Ft Artist) I would like to move everything in…
James
  • 1
0
votes
1 answer

Powershell - rename users (loop)

I'm trying to update a few (560) users on my domain. they are using incomplete and/or incorrect names according to my workers DB. I created a CSV file containing this info: samaccoutname,Name,givenname,surname r001248,ADRIANA DAS COUVE ,ADRIANA ,DAS…
0
votes
1 answer

Using regex to store text before and after two different characters

I have a series of files that have this format: 01x05e - Some text (Some more text) 01x05f - Some text (Some more text) 01x05g - Some text (Some more text) What I'd like to to is strip them to produce this: 01x05e - Some more text 01x05f -…
Andrew Martin
  • 5,619
  • 10
  • 54
  • 92
-1
votes
1 answer

How to batch rename multiple files across multiple folders and combine them into one massive folder?

I have a list of 100+ folders listed already in order. Folder 1 Folder 2 Folder 3 etc... In each of the folder contains images that are also in order 001.jpg 002.jpg 003.jpg etc... Ultimately, I am trying to combine these 100+ folders into one…