Simplify timestamp format in output folder name to YYYY-MM-DD_HHMMSS

This commit is contained in:
Roncero Blanco, Edgar
2025-05-26 13:59:32 +02:00
parent 52edae428c
commit dfe237d3ea

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_%H-%M-%S")
run_date = datetime.now().strftime("%Y-%m-%d_%H%M%S")
# Ask for source path, strip quotes if pasted
source_input = input("Drag and drop your music folder here, then press Enter: ").strip().strip('"')