I have a WinSCP command in a batch file as described below:
get -neweronly event_%TIMESTAMP#yyyymmdd%_0000.db C:\events\test
What I want to do is set the TIMESTAMP from a user input (e.g. from a text file)
I do not want to use the current computer time - Is this possible?
If I put a date of 20180101 in a text file and import it, would this be the solution?
set /p TIMESTAMP=<Timestampdate.txt
Would I need to do anything to the TIMESTAMP in the get -neweronly event_%TIMESTAMP#yyyymmdd%_0000.db C:\events\test?