-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRemove Dates From Filenames.py
27 lines (22 loc) · 1.11 KB
/
Remove Dates From Filenames.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import os
import re
# Replace 'your/directory/path' with the path to the directory you want to search
directory_path = r'C:\temp\\'
# Regex pattern to match '_YYYYMMDD' before the file extension
date_pattern = re.compile(r'(_\d{8})(\.\w+)$')
# Loop through the files in the specified directory
for filename in os.listdir(directory_path):
# Check if the file name ends with '_YYYYMMDD'
match = date_pattern.search(filename)
if match:
# Extract the file extension
file_extension = match.group(2)
# New file name without the last 9 characters but with the original extension
new_filename = date_pattern.sub(file_extension, filename)
# Full path for the old and new file names
old_file_path = os.path.join(directory_path, filename)
new_file_path = os.path.join(directory_path, new_filename)
# Print out what would be changed
print(f'Would rename "{filename}" to "{new_filename}"')
# Uncomment the next line to actually perform the renaming after confirming the changes
# os.rename(old_file_path, new_file_path)