|
Summary
Path and name of local file to transfer.
Description
The LocalFile property specifies the name of the local file to be used during a direct file transfer. File transfers are initiated by setting the FileAction property to FILE_ACTION_GET or
FILE_ACTION_PUT. A file transfer is direct rather than event based if the TransferMode property is set to TRANSFER_MODE_FILE instead of TRANSFER_MODE_EVENT.
During an event based file transfer, the LocalFile property is ignored and can be left blank.
The local file must be specified with a fully qualified path (such as "C:\MYDIR\TEST.TXT"). Since there is no local current working directory, a file specified without a path may reside in the
Windows directory, in the directory from which the application was started or in the directory defined as the application's working directory.
This property can be changed at any time except during a file transfer. There is no default value for this property.
Example
FTPClient.RemoteFile = "test.exe" FTPClient.LocalFile = "c:\test.exe" FTPClient.FileAction = FILE_ACTION_GET
Note
For new applications specify the source or destination in the GetFile, PutFile, Romote and RemoteAppend methods instead of setting this property.
|