Back to product page
- Introduction
- Overview
- License agreement
- Getting Started
- Objects
- Enumerations
- wodSFTP
- Methods
- Abort
- About
- AppendData
- AppendFile
- Connect
- DeleteFile
- DeleteFiles
- Disconnect
- ExtendedCmd
- GetAttributes
- GetData
- GetDataAt
- GetFile
- GetFileAt
- GetFiles
- ListAttributes
- ListDir
- ListNames
- LoopFiles
- MakeDir
- PutData
- PutDataAt
- PutFile
- PutFileAt
- PutFiles
- RealPath
- RemoteClose
- RemoteOpen
- RemoteRead
- RemoteWrite
- RemoveDir
- Rename
- SetAttributes
- SetAttributes64
- Properties
- Authentication
- Blocking
- BufferSize
- ClientName
- Compression
- Encryption
- EncryptionList
- ErrorText
- Extensions
- FingerPrint
- FIPS
- HMacList
- Hostname
- KeepAlives
- KeyExchangeList
- KeySignatureList
- LastError
- ListItem
- LocalPath
- Login
- MaxTransferRate
- MyHostname
- MyIP
- Notification
- Password
- Port
- PrivateKey
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- RemoteIdentification
- RemotePath
- Resume
- ServerErrorCode
- ServerErrorText
- State
- StateText
- Timeout
- Timezone
- TransferMode
- TransferRate
- TransferTime
- UseIPv6
- Version
- Events
- Methods
- IwodSFTPNotify
- SftpItem
- SftpItems
- How to get support?
- Technical information
- Fast notifications interface
- Error list
AppendData method
Appends data from a string variable to a remote file.
Type
NoneSyntax
- Basic
object.AppendData Data, [RemoteFile]
The AppendData(object,Data,RemoteFile) syntax has these parts:
The AppendData(object,Data,RemoteFile) syntax has these parts:
object | An expression evaluating to an object of type wodSFTP. |
Data | Required. A String value. Represents data that will be stored on the server. |
RemoteFile | Optional. A Variant value. Full path to a file on the server. |
Remarks
Unlike the AppendFile method that appends the contents of a local file to the server, AppendData will append the contents of a Data variable to the specified file on the server. This is very useful feature for small files that are stored in local variables in your programs. Although there is no size limit on sending data to the server this way, you should try to limit data to 64kb - this will depend on how much data your programming environment is able to store in a String variable.What will AppendData do for you? It will copy the contents of a specified variable to a temporary file on disk (in the temporary folder) and then append that file to the server. Keep in mind that for this method you *MUST* allow the component to write to your disk. If you are using wodSFTP in an environment such as ASP, make sure the Guest user has sufficient privileges to create temporary files.
Once this temporary file is sent to the server, it will be deleted from the local disk.