8

In my Windows 7 console, I can download file from SFTP with the command

d://putty//pscp -P 22 root@serverip:/root/movie   c://movie

How can I resume a broken download in Window 7 cmd console when the file is very large?
Can pscp resume a broken download in Windows 7 cmd console?

showkey
  • 291

1 Answers1

9

The pscp does not support resume.

As @PeterJ commented, another tool from PuTTY suite, the psftp, does. You should have no problems resuming interrupted pscp transfer with psftp:

C:\>d:\putty\psftp root@serverip
psftp> reget /root/movie C:\movie
reget: restarting at file position xxxxxx
remote:/root/movie => local:C:\movie