From 46608ba1bf4d067e151b43aab9c65119afd4d988 Mon Sep 17 00:00:00 2001 From: Jadon Yack Date: Thu, 21 Jul 2022 20:01:41 -0400 Subject: [PATCH] Initial commit. --- download_manager.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 download_manager.py diff --git a/download_manager.py b/download_manager.py new file mode 100644 index 0000000..267807a --- /dev/null +++ b/download_manager.py @@ -0,0 +1,14 @@ +# This is a Python script that automates the management of the Downloads folder +# for an organized experience. It will sort images, videos, documents, and ISO +# files on download. +# +# Written by Jadon Yack (jyack) + +import os + +src_dir = "/home/jyack/Downloads" +img_dst = "/home/jyack/Pictures/DownloadedImages" +vid_dst = "/home/jyack/Videos" +doc_dst = "/home/jyack/Documents" +iso_dst = "/home/jyack/ISOs" +