Skip to content

Instantly share code, notes, and snippets.

@daveaseeman
Last active March 14, 2018 18:09
Show Gist options
  • Save daveaseeman/650281d530400e381532df6e97770805 to your computer and use it in GitHub Desktop.
Save daveaseeman/650281d530400e381532df6e97770805 to your computer and use it in GitHub Desktop.
Rename PDF files by date (examples)
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)
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