About

Metadata

  • Last updated , by janus
  • License LicenseRef-PublicDomain
  • Categories Web Development
  • Maintained by: Flipstone Technology Partners

  • Lottery factor: 0

Links

Installation

Readme

FTP Client

ftp-client is a client library for the FTP protocol in Haskell.

Examples

Insecure

withFTP "ftp.server.com" 21 $ \h welcome -> do
    print welcome
    login h "username" "password"
    print =<< nlst h []

Secured with TLS

withFTPS "ftps.server.com" 21 $ \h welcome -> do
    print welcome
    login h "username" "password"
    print =<< nlst h []