swirl
Guide to OmniMark 7   OmniMark home
docs home 
IndexConceptsTasksSyntaxLibrariesLegacy LibrariesErrors
 
      Other Library Functions  
function  

FTPConnectionRemoteOutputFile

 
 

Library: Net, FTP support (OMFTP)
Include: omftp.xin
Return type: output
Returns: 

An external output object.


Declaration

  define external output function FTPConnectionRemoteOutputFile
                          value FTPConnection this-FTPConnection
                   file   value stream remote-filename


Purpose

This is an external output function used to send data to a remote file on an FTP server. The FTP connection is locked during the lifetime of the output object. The error inquiry functions, and the close method are allowed.

To use this function, you must include the following line near the start of your program:


  include "omftp.xin"

Arguments:

Examples:

  ; send a file to the server
  set FTPConnectionRemoteOutputFile MyCon file "test.out" to
      file "testfile1.txt"

  ; send data to a file on the FTP server using a stream attachment
  open s as FTPConnectionRemoteOutputFile MyCon file "test2.out"
  using output as s do
     output date "=xD/=xM/=xY:" || "%n"
     output "this data is going into the remote file%n"
     output "here's some more data for the file%n"
  done
  close s ; close ends the file transmission

        Other Library Functions
   FTPConnection
   FTPConnectionChangeDir
   FTPConnectionClose
   FTPConnectionDelete
   FTPConnectionDeleteDir
   FTPConnectionGetStatusReport
   FTPConnectionGetWorkingDir
   FTPConnectionIsInError
   FTPConnectionIsOpen
   FTPConnectionListDir
   FTPConnectionMakeDir
   FTPConnectionOpen
   FTPConnectionRemoteInputFile
   FTPConnectionRemoteOutputFile
   FTPConnectionSetASCII
   FTPConnectionSetBinary
   FTPIsVersionCompatible
   FTPLibraryVersion
 
 

Top [ INDEX ] [ CONCEPTS ] [ TASKS ] [ SYNTAX ] [ LIBRARIES ] [ LEGACYLIBRARIES ] [ ERRORS ]

OmniMark 7.1.2 Documentation Generated: June 28, 2005 at 5:45:16 pm
If you have any comments about this section of the documentation, send email to [email protected]

Copyright © Stilo Corporation, 1988-2005.