문제

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

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top