Last active
November 27, 2022 20:30
-
-
Save srustagi/791f7631e3cfbc2581b9415f2ba39da2 to your computer and use it in GitHub Desktop.
Remove UTC timestamp from Windows File History Backup for all files in folder recursively, skip over duplicates.
This file contains hidden or 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 re | |
from os.path import join | |
from os import walk, rename | |
FOLDER_PATH = join('PATH_TO', 'DIR_NAME') | |
for path, subdirs, files in walk(FOLDER_PATH): | |
for i, name in enumerate(files): | |
fixed = re.sub(r' \(.+\)', '', name) | |
print('{} / {}'.format(i + 1, len(files))) | |
try: | |
rename(join(path, name), join(path, fixed)) | |
except FileExistsError: | |
continue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've been putting off trying to write something like this myself. Then I found this!
Thank you!