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 os | |
import time | |
import json | |
from win32_setctime import setctime | |
ORIGINAL_FOLDER = 'Google Photos' | |
# Iterate through each album of your Google Photos | |
for album in os.listdir(ORIGINAL_FOLDER): | |
album_path = f'{ORIGINAL_FOLDER}/{album}' |