WinSCP select most recent file

前端 未结 1 1983
栀梦
栀梦 2020-12-20 04:06

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条回答
  •  生来不讨喜
    2020-12-20 04:53

    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.

    0 讨论(0)
提交回复
热议问题