'Declaration Public Overloads Sub ReceiveFile( _ ByVal remoteFilename As String, _ ByVal offset As Long, _ ByVal localFilename As String _ )
'Usage Dim instance As FtpClient Dim remoteFilename As String Dim offset As Long Dim localFilename As String instance.ReceiveFile(remoteFilename, offset, localFilename)
public void ReceiveFile( string remoteFilename, long offset, string localFilename )
Parameters
- remoteFilename
- The filename of the file to retrieve. Some FTP servers may be case-sensitive!
- offset
- The byte offset (of the remote file) at which to start receiving data from the remote file.
- localFilename
- The path and filename of the file as it will be stored on the local system.