Re: FTP client
Chris Angelico <[email protected]>
| Newsgroups | gmane.comp.lang.pike.user |
|---|---|
| Message-ID | <CAPTjJmpn4WDDtEsn1Zy5wRCBt+j=p5E4_FWQ_V2o6Wd8RB4maw@mail.gmail.com> |
On Fri, Jan 16, 2015 at 1:10 AM, Pontus Östlund <[email protected]> wrote: > Hello Pike List! > > I was wondering if there's any built-in FTP client in Pike. I sure can't > find one. Does anyone have one laying around to spare, or some pointers to > an easy way to implement one? I don't know of one in the standard library, and I don't have actual code lying around, but it's not a terribly complicated protocol; you could probably build it on top of basic Stdio.File sockets in under an hour, especially if your needs are fairly simple. I'd be happy to help out if you need a hand. ChrisA