home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / viscobv6.zip / vac22os2 / ibmcobol / samples / toolkit / tcpiptk / rcopy / readme < prev    next >
Text File  |  1996-11-19  |  2KB  |  37 lines

  1. RCOPY is located in \TOOLKIT\SAMPLES\TCPIPTK\SOCKET.
  2.  
  3. RCOPY makes use of the FTP API (FTPAPI.DLL) to transfer a directory and
  4. all of its subdirectories between a client and FTP server.  RCOPY does 
  5. not read userid or password from the NETRC file so they must be specified 
  6. when required. 
  7.  
  8.      put  transfers from local host to remote host (default)
  9.      get  transfers from remote host to local host.
  10.      binary  Binary transfer mode (default).
  11.      ascii   ASCII transfer mode.
  12.  
  13. Following are the details on building and executing the RCOPY Sample:
  14.  
  15.      1.  To compile and link the sample, type:
  16.  
  17.            nmake -f vacpp.mak         (to build using the VisualAge C/C++ compiler)
  18.            make -f borland.mak        (to build using the Borland C++ compiler)
  19.            wmake -f watcom.mak        (to build using the Watcom C/C++ compiler)
  20.            nmake -f metaware.mak      (to build using the Metaware High C/C++ compiler)
  21.            
  22.      2.  Executing rcopy.exe
  23.  
  24.          a)  Command Syntax
  25.  
  26.                RCOPY put|get ascii|binary [-l<local path>] -h<host> 
  27.                      -u<userid> -p<password> [-r<rem path>] [-a<account>]
  28.  
  29.          b)  Example
  30.  
  31.                rcopy put -ld:\tmp -holeg -uyozzo -pyozzops -rc:\newtmp
  32.  
  33.                Where:  d:\tmp   is a local path to transfer
  34.                        oleg     is a remote host (ftp server)
  35.                        yozzo    is a remote userid
  36.                        yozzops  is a remote password
  37.