问题
I want to use .bat and .txt files to download a daily file I have off of a remote directory
The root of the file is always the same, but the date changes...daily
get filename_yyyymmdd.txt
How can I search and download the file with today's date?
Thanks
回答1:
If you can rely on file timestamp, use file mask with time-constaint.
See WinSCP time based file download.
If you have to rely on a file name, use the %TIMESTAMP% syntax:
get filename_%TIMESTAMP#yyyymmdd%.txt
Also consider using WinSCP .NET assembly, instead of scripting. Particularly, if you know, say, PowerShell.
来源:https://stackoverflow.com/questions/16421729/daily-cup-of-winscp-file-download-with-todays-date