ds1
We are using SmartFTP Library Version 2.0.107.0. We are trying to resume upload of file of size 8GB using SFTP over SSH connection. The code we are using is as follows:
_objSFTP.UploadFile(fileName, fileName, LocalfileLowValue, 0, ServerfileLowValue, 0) = sfFTPLib.enumError.ftpErrorSuccess
The problem is when the start byte of the file is a large value. The function "UploadFile" accepts only integer values for low and high and if the size of the start byte is in GB then we cant use an integer. Can anyone tell me how I can resume uploading of a large file over an SFTP connection?
_objSFTP.UploadFile(fileName, fileName, LocalfileLowValue, 0, ServerfileLowValue, 0) = sfFTPLib.enumError.ftpErrorSuccess
The problem is when the start byte of the file is a large value. The function "UploadFile" accepts only integer values for low and high and if the size of the start byte is in GB then we cant use an integer. Can anyone tell me how I can resume uploading of a large file over an SFTP connection?