LicenseRef-PublicDomain licensed by Megan Robinson
Maintained by [email protected]
This version can be pinned in stack with:ftp-client-0.5.1.5@sha256:03e933fe3fc7e797b2d835a01dea2ac8d8e6d60883ee22d791a0f8517867d0be,1460

Module documentation for 0.5.1.5

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 []