Move logging patches after adventure

This commit is contained in:
Jason Penilla 2024-04-23 11:21:16 -07:00
parent f2c45ed1d3
commit 00c14f2e7b
No known key found for this signature in database
GPG Key ID: 0E75A301420E48F8
1050 changed files with 36 additions and 0 deletions

36
main.py Normal file
View File

@ -0,0 +1,36 @@
import os
import re
# Set the directory where the files are located
dir_path = '/Users/jason/IdeaProjects/PaperMC/Paper/patches/unapplied/server'
# Change to the directory
os.chdir(dir_path)
# Regex pattern to match the file names
pattern = r'^(\d+)-(.*\.patch)$'
# List of files in the directory
files = os.listdir(dir_path)
# Sort the files numerically
files.sort(key=lambda x: int(re.match(pattern, x).group(1)))
for file in files:
# Match the file name against the pattern
match = re.match(pattern, file)
if match:
# Extract the current number and description
current_number = int(match.group(1))
description = match.group(2)
# Calculate the new number
new_number = current_number + 4
# Construct the new file name
new_file_name = f'{str(new_number).zfill(4)}-{description}'
# Rename the file
os.rename(file, new_file_name)
print('Files renamed successfully.')

Some files were not shown because too many files have changed in this diff Show More