From cbe4c5badb5b3ffc4d9a2589ff69e04587bfd6ac Mon Sep 17 00:00:00 2001 From: "Roncero Blanco, Edgar" Date: Mon, 26 May 2025 13:39:11 +0200 Subject: [PATCH] Include minutes and seconds in run_date to avoid destination folder conflicts --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index 8c29238..6c68489 100644 --- a/src/app.py +++ b/src/app.py @@ -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()