Found a DOS Batch file as a work around for the time being.
For those of you needing something similar, here's a DOS Batch script you can run to create a directory with the timestamp as the name.
set hh=%time:~0,2%
if "%time:~0,1%"==" " set hh=0%hh:~1,1%
set yyyy-mm-dd__hh.mm.ss=%date:~10,4%-%date:~4,2%-%date:~7,2%__%hh%.%time:~3,2%.%time:~6,2%---%date:~-0,3%
MD C:\Archive\%yyyy-mm-dd__hh.mm.ss%
Move D:\downloads\*.* C:\Archive\%yyyy-mm-dd__hh.mm.ss%
Put the above into a text file, rename the extension to .bat and schedule it after how many ever hours it takes for your download to complete.
set hh=%time:~0,2%
if "%time:~0,1%"==" " set hh=0%hh:~1,1%
set yyyy-mm-dd__hh.mm.ss=%date:~10,4%-%date:~4,2%-%date:~7,2%__%hh%.%time:~3,2%.%time:~6,2%---%date:~-0,3%
MD C:\Archive\%yyyy-mm-dd__hh.mm.ss%
Move D:\downloads\*.* C:\Archive\%yyyy-mm-dd__hh.mm.ss%
Put the above into a text file, rename the extension to .bat and schedule it after how many ever hours it takes for your download to complete.