<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: C or C++ FTP API package in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/c-or-c-ftp-api-package/m-p/2563873#M725129</link>
    <description>Perhaps libwww will do what you want.  It may be&lt;BR /&gt;more complicated than you need, however, because&lt;BR /&gt;it's multi-protocol: &lt;A href="http://www.w3.org/Library" target="_blank"&gt;http://www.w3.org/Library&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;There's also a commercial FTP-only API&lt;BR /&gt;developed for the (awesome) free FTP client ncftp:&lt;BR /&gt;&lt;A href="http://ncftp.com/libncftp" target="_blank"&gt;http://ncftp.com/libncftp&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Of couse, it's quite easy to do this sort of&lt;BR /&gt;thing in Perl using Net::FTP.&lt;BR /&gt;&lt;BR /&gt;use Net::FTP;&lt;BR /&gt;$ftp = Net::FTP-&amp;gt;new("some.host.name");&lt;BR /&gt;$ftp-&amp;gt;login("anonymous",'me@here.there');&lt;BR /&gt;$ftp-&amp;gt;cwd("/pub");&lt;BR /&gt;$ftp-&amp;gt;get("that.file");&lt;BR /&gt;$ftp-&amp;gt;quit;&lt;BR /&gt;</description>
    <pubDate>Thu, 09 Aug 2001 16:29:41 GMT</pubDate>
    <dc:creator>Gregory Fruth</dc:creator>
    <dc:date>2001-08-09T16:29:41Z</dc:date>
    <item>
      <title>C or C++ FTP API package</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/c-or-c-ftp-api-package/m-p/2563872#M725128</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I'm looking for a C or C++ FTP API package.&lt;BR /&gt;&lt;BR /&gt;Does anyone knows if this is available with Hp_ux ?&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Thu, 09 Aug 2001 15:16:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/c-or-c-ftp-api-package/m-p/2563872#M725128</guid>
      <dc:creator>nuwendam</dc:creator>
      <dc:date>2001-08-09T15:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: C or C++ FTP API package</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/c-or-c-ftp-api-package/m-p/2563873#M725129</link>
      <description>Perhaps libwww will do what you want.  It may be&lt;BR /&gt;more complicated than you need, however, because&lt;BR /&gt;it's multi-protocol: &lt;A href="http://www.w3.org/Library" target="_blank"&gt;http://www.w3.org/Library&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;There's also a commercial FTP-only API&lt;BR /&gt;developed for the (awesome) free FTP client ncftp:&lt;BR /&gt;&lt;A href="http://ncftp.com/libncftp" target="_blank"&gt;http://ncftp.com/libncftp&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Of couse, it's quite easy to do this sort of&lt;BR /&gt;thing in Perl using Net::FTP.&lt;BR /&gt;&lt;BR /&gt;use Net::FTP;&lt;BR /&gt;$ftp = Net::FTP-&amp;gt;new("some.host.name");&lt;BR /&gt;$ftp-&amp;gt;login("anonymous",'me@here.there');&lt;BR /&gt;$ftp-&amp;gt;cwd("/pub");&lt;BR /&gt;$ftp-&amp;gt;get("that.file");&lt;BR /&gt;$ftp-&amp;gt;quit;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Aug 2001 16:29:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/c-or-c-ftp-api-package/m-p/2563873#M725129</guid>
      <dc:creator>Gregory Fruth</dc:creator>
      <dc:date>2001-08-09T16:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: C or C++ FTP API package</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/c-or-c-ftp-api-package/m-p/2563874#M725130</link>
      <description>Hi Erick:&lt;BR /&gt;&lt;BR /&gt;When I need to do that thesedays with C, I simply build a perl script using the Net::FTP&lt;BR /&gt;module. The C program builds the script file 'on the fly' and then does a system call.&lt;BR /&gt;&lt;BR /&gt;Clay</description>
      <pubDate>Thu, 09 Aug 2001 17:07:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/c-or-c-ftp-api-package/m-p/2563874#M725130</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-08-09T17:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: C or C++ FTP API package</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/c-or-c-ftp-api-package/m-p/2563875#M725131</link>
      <description>you might consider libcurl. i've not used it for FTP myself, but i use it for HTTP in netperf3, and am thinking of using it for FTP in netperf3.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Aug 2001 19:49:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/c-or-c-ftp-api-package/m-p/2563875#M725131</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2001-08-09T19:49:21Z</dc:date>
    </item>
  </channel>
</rss>

