Last active
March 14, 2018 18:09
-
-
Save daveaseeman/650281d530400e381532df6e97770805 to your computer and use it in GitHub Desktop.
Rename PDF files by date (examples)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import datetime | |
path = os.getcwd() | |
filenames = os.listdir(path) | |
for filename in filenames: | |
if ".pdf" in filename: | |
old_file_and_path = os.path.join(path, filename) | |
filename = filename[:-4] | |
date = datetime.datetime.strptime(filename, "%B %d, %Y") | |
new_filename = date.strftime("%Y-%m-%d") + ".pdf" | |
new_file_and_path = os.path.join(path, new_filename) | |
print("renaming {} to {}".format(old_file_and_path, new_file_and_path)) | |
os.rename(old_file_and_path, new_file_and_path) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import datetime | |
path = os.getcwd() | |
filenames = os.listdir(path) | |
for filename in filenames: | |
if ".pdf" in filename: | |
old_file_and_path = os.path.join(path, filename) | |
filename = filename[:-24] | |
# print("{}".format(filename)) | |
date = datetime.datetime.strptime(filename, "%b %Y") | |
# print("{}".format(date)) | |
new_filename = date.strftime("%Y-%m") + ".pdf" | |
# print("{}".format(new_filename)) | |
new_file_and_path = os.path.join(path, new_filename) | |
print("renaming {} to {}".format(old_file_and_path, new_file_and_path)) | |
os.rename(old_file_and_path, new_file_and_path) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment