Uses of Class
com.enterprisedt.net.ftp.WriteMode
Packages that use WriteMode
Package
Description
FileTransferClient is the key
class for edtFTPj/Free and provides basic FTP features.This package contains the classes used for asynchronous programming - primarily the XXXResult classes,
which are returned from asynchronous methods and used to provide details about the operation,
such as what file is being transferred.
-
Uses of WriteMode in com.enterprisedt.net.ftp
Fields in com.enterprisedt.net.ftp declared as WriteModeModifier and TypeFieldDescriptionstatic final WriteModeWriteMode.APPENDAppend the filestatic final WriteModeWriteMode.OVERWRITEOverwrite the filestatic final WriteModeWriteMode.RESUMEResume the fileMethods in com.enterprisedt.net.ftp with parameters of type WriteModeModifier and TypeMethodDescriptionvoidFileTransferClient.downloadFile(String localFileName, String remoteFileName, WriteMode writeMode) Download a file from the FTP server .voidFileTransferClientInterface.downloadFile(String localFileName, String remoteFileName, WriteMode writeMode) Download a file from the FTP server .voidSecureFileTransferClient.downloadFile(String localFileName, String remoteFileName, WriteMode writeMode) Download a file from the FTP server .AsyncFileTransferClient.downloadFileAsync(String localFileName, String remoteFileName, WriteMode writeMode, AsyncCallback.DownloadFile callback, Object tag) Download a file from the FTP server asynchronously.SecureFileTransferClient.uploadByteArray(byte[] bytes, String remoteFileName, WriteMode writeMode) Upload a byte array to the FTP server.AsyncFileTransferClient.uploadByteArrayAsync(byte[] bytes, String remoteFileName, WriteMode writeMode, AsyncCallback.UploadByteArray callback, Object tag) Upload a byte array to the FTP server asynchronously.FileTransferClient.uploadFile(String localFileName, String remoteFileName, WriteMode writeMode) Upload a file to the FTP server.FileTransferClientInterface.uploadFile(String localFileName, String remoteFileName, WriteMode writeMode) Upload a file to the FTP server.SecureFileTransferClient.uploadFile(String localFileName, String remoteFileName, WriteMode writeMode) Upload a file to the FTP server.AsyncFileTransferClient.uploadFileAsync(String localFileName, String remoteFileName, WriteMode writeMode, AsyncCallback.UploadFile callback, Object tag) Upload a file to the FTP server asynchronously.FileTransferClient.uploadStream(String remoteFileName, WriteMode writeMode) Upload a file to the FTP server by writing to a stream.FileTransferClientInterface.uploadStream(String remoteFileName, WriteMode writeMode) Upload a file to the FTP server by writing to a stream.SecureFileTransferClient.uploadStream(String remoteFileName, WriteMode writeMode) Upload a file to the FTP server by writing to a stream.AsyncFileTransferClient.uploadStreamAsync(String remoteFileName, WriteMode writeMode, AsyncCallback.UploadStream callback, Object tag) Upload a file to the FTP server by writing to a stream, asynchronously. -
Uses of WriteMode in com.enterprisedt.net.ftp.async
Methods in com.enterprisedt.net.ftp.async that return WriteModeModifier and TypeMethodDescriptionTransferFileResult.getWriteMode()What write mode is this operation?UploadByteArrayResult.getWriteMode()What write mode is this operation?Constructors in com.enterprisedt.net.ftp.async with parameters of type WriteModeModifierConstructorDescriptionDownloadFileResult(String localFileName, String remoteFileName, WriteMode writeMode) TransferFileResult(String localFileName, String remoteFileName, WriteMode writeMode) Constructor.UploadByteArrayResult(byte[] bytes, String remoteFileName, WriteMode writeMode) Constructor.UploadFileResult(String localFileName, String remoteFileName, WriteMode writeMode) ConstructorUploadStreamResult(String remoteFileName, WriteMode writeMode) Constructor.