MSLockscreenImageGrabber/MSLockscreenWallpaperGrabbe...

20 lines
978 B
Python
Raw Normal View History

2023-12-06 15:41:56 +00:00
# reiyua, rei@reiyua.lol, 2023
2023-12-06 15:44:00 +00:00
# This is a simple python script which copies the images from the Microsoft Lockscreen Wallpaper Directory in AppData, append them with ".jpg" and place them in a directory of the user's choosing.
2023-12-06 15:41:56 +00:00
2023-12-06 15:39:43 +00:00
import os
import shutil
#Set the source and destination directories (Replace \ with / before imputting)
source = 'C:/Users/User/AppData/Local/Packages/Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy/LocalState/Assets' #Replace "User" with your username
destination = '*INSERT USER DIRECTORY HERE* (Example: C:/Users/User/Pictures/Wallpapers/)'
#Copy files from the system directory to a directory of the user's choice
for file_name in os.listdir(source):
if file_name.endswith(''):
shutil.copy(os.path.join(source, file_name), destination)
# Append .jpg to end of file name (Windows doesn't do this automatically)
for filename in os.listdir(destination):
os.rename(destination + filename, destination + filename + '.jpg')