Resuming downloads |
If a file fails to download completely you can resume the download using any of the Sftp#resumeDownload methods. Prior to using the Sftp#resumeDownload method you must first determine how much of the file in bytes was successfully downloaded. To do this you may use the java.io.File.length method which will return the length of the local file in bytes.
Example
// get length of local file long offset = new File("c:/setup.zip").length();
// set local directory sftp.setLocalDir(new File("c:/"));
// resume file download starting from offset sftp.resumeDownload("setup.zip",offset);
Note
Resuming downloads is only possible when transferring files in binary mode. Resuming a transfer in ASCII mode is not supported.
|