WinSCP select most recent file

2019-05-19 23:13发布

问题:

Looking for the WinSCP command line equivalent of selecting the most recent/latest file. Any ideas

http://winscp.net/eng/docs/script_download_most_recent_file

回答1:

Use the -latest switch of the get command, as the Downloading the most recent file article shows:

get -latest /home/user/* c:\downloaded\

If you want to use it on command-line, the syntax is like:

winscp.com /command "open sftp://user:password@example.com/ -hostkey=""ssh-rsa 2048 xx:xx:xx...""" "get -latest /home/user/* c:\downloaded\" "exit"

Use WinSCP GUI to generate command-line template for you.