Include minutes and seconds in run_date to avoid destination folder conflicts

This commit is contained in:
Roncero Blanco, Edgar
2025-05-26 13:39:11 +02:00
parent e8cf98708b
commit cbe4c5badb

View File

@@ -9,7 +9,7 @@ CD_SIZE = 695 * 1024 * 1024 # 695 MB
GROUP_SIZE = 5
# Store the current date
run_date = datetime.now().strftime("%Y-%m-%d")
run_date = datetime.now().strftime("%Y-%m-%d_%H-%M-%S")
# Ask for source path
source_input = input("Enter the full path to your source MP3 folder: ").strip()