I have a program that downloads pictures from reddit but it saves them to the folder with my py file.
How can I save these pictures to a folder called pictures?
import os
filename = "17861.jpg"
path = "E:\projects\python\Yuki.py\pic saver\pictures"
fullpath = os.path.join(path, filename)
I have tried this but it would not work.
If you can help me, thank you!