RxFtp: Difference between revisions
Appearance
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:rxFtp}} | |||
'''rxFtp''' is a REXX function package providing access to the OS/2 TCP/IP FTP API as provided by the IBM TCP/IP for OS/2 product (version 1.2.1). | |||
;Files | ;Files | ||
Line 5: | Line 6: | ||
==Functions== | ==Functions== | ||
* FtpLoadFuncs | * FtpLoadFuncs - load the registered REXX FTP function set | ||
* FtpDropFuncs | * FtpDropFuncs - unload the registered REXX FTP function set | ||
* FtpVersion | * FtpVersion - returns version of the REXX FTP API | ||
* FtpSetUser | * FtpSetUser - specifies the server, user, password, and optional account information | ||
* FtpSetBinary | * FtpSetBinary - sets the default text translation | ||
* FtpAppend | * FtpAppend - appends a local file | ||
* FtpDelete | * FtpDelete - deletes the remote file | ||
* FtpGet | * FtpGet - copies a file from the server | ||
* FtpPut | * FtpPut - copies a file to the server | ||
* FtpPutUnique | * FtpPutUnique - copies a file to the server with unique name | ||
* FtpRename | * FtpRename - renames a file on the server | ||
* FtpLs | * FtpLs - displays remote directory information (short format) | ||
* FtpDir | * FtpDir - displays remote directory information (long format) | ||
* FtpPwd | * FtpPwd - prints working directory | ||
* FtpChDir | * FtpChDir - changes the working directory | ||
* FtpMkDir | * FtpMkDir - creates a new remote directory | ||
* FtpRmDir | * FtpRmDir - removes a remote directory | ||
* FtpLogoff | * FtpLogoff - ends the FTP session | ||
* FtpQuote | * FtpQuote - sends the string to a server | ||
* FtpSite | * FtpSite - site information | ||
* FtpSys | * FtpSys - description of the operating system | ||
* FtpProxy | * FtpProxy - copies files from one server to another | ||
* FtpPing - pings the named server with a packet | |||
==License== | ==License== | ||
Line 33: | Line 35: | ||
==Links== | ==Links== | ||
* [ | * [rexxftp.zip] | ||
[[Category:REXX Function Library]] | [[Category:REXX Function Library]] |
Latest revision as of 15:57, 4 September 2023
rxFtp is a REXX function package providing access to the OS/2 TCP/IP FTP API as provided by the IBM TCP/IP for OS/2 product (version 1.2.1).
- Files
- RXFTP.DLL
Functions
- FtpLoadFuncs - load the registered REXX FTP function set
- FtpDropFuncs - unload the registered REXX FTP function set
- FtpVersion - returns version of the REXX FTP API
- FtpSetUser - specifies the server, user, password, and optional account information
- FtpSetBinary - sets the default text translation
- FtpAppend - appends a local file
- FtpDelete - deletes the remote file
- FtpGet - copies a file from the server
- FtpPut - copies a file to the server
- FtpPutUnique - copies a file to the server with unique name
- FtpRename - renames a file on the server
- FtpLs - displays remote directory information (short format)
- FtpDir - displays remote directory information (long format)
- FtpPwd - prints working directory
- FtpChDir - changes the working directory
- FtpMkDir - creates a new remote directory
- FtpRmDir - removes a remote directory
- FtpLogoff - ends the FTP session
- FtpQuote - sends the string to a server
- FtpSite - site information
- FtpSys - description of the operating system
- FtpProxy - copies files from one server to another
- FtpPing - pings the named server with a packet
License
- Author: Patrick Mueller / IBM
- License: Freeware. IBM License Agreement for OS/2 Tools.
Links
- [rexxftp.zip]