1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
<html>
<head><title>Ftp Library</title></head>
<body>
<h1>Ftp Library</h1>
<h2>Miscellaneous Functions</h2>
<ul>
<li><a href="FtpInit.html">FtpInit()</a> - Initialize the library
<li><a href="FtpSite.html">FtpSite()</a> - Send a 'SITE' command
<li><a href="FtpLastResponse.html">FtpLastResponse()</a> - Retrieve last server response
</ul>
<h2>Server Connection</h2>
<ul>
<li><a href="FtpConnect.html">FtpConnect()</a> - Connect to a remote server
<li><a href="FtpLogin.html">FtpLogin()</a> - Login to remote machine
<li><a href="FtpQuit.html">FtpQuit()</a> - Disconnect from remote server
</ul>
<h2>Directory Functions</h2>
<ul>
<li><a href="FtpChdir.html">FtpChdir()</a> - Change working directory
<li><a href="FtpMkdir.html">FtpMkdir()</a> - Create a directory
<li><a href="FtpRmdir.html">FtpRmdir()</a> - Remove a directory
<li><a href="FtpDir.html">FtpDir()</a> - List a remote directory
<li><a href="FtpNlst.html">FtpNlst()</a> - List a remote directory
</ul>
<h2>File to File Transfer</h2>
<ul>
<li><a href="FtpGet.html">FtpGet()</a> - Retreive a remote file
<li><a href="FtpPut.html">FtpPut()</a> - Send a local file to remote
<li><a href="FtpDelete.html">FtpDelete()</a> - Delete a remote file
<li><a href="FtpRename.html">FtpRename()</a> - Rename a remote file
</ul>
<h2>File to Program Transfer</h2>
<p>These routines were added in V3. They allow programs access to the
data streams connected to remote files and directories.
<ul>
<li><a href="FtpAccess.html">FtpAccess()</a> - Open a remote file or directory
<li><a href="FtpRead.html">FtpRead()</a> - Read from remote file or directory
<li><a href="FtpWrite.html">FtpWrite()</a> - Write to remote file
<li><a href="FtpClose.html">FtpClose()</a> - Close data connection
</ul>
<h2>Utilities</h2>
<ul>
<li><a href="qftp.html">qftp</a> - Command line ftp utility
</ul>
</body>
</html>
|