@hackage ftp-client0.5.1.6
Transfer files with FTP and FTPS
Categories
License
LicenseRef-PublicDomain
Maintainer
Flipstone Technology Partners
Links
Versions
Installation
Dependencies (9)
- attoparsec >=0.10 && <0.15
- base >=4.8 && <5
- bytestring >=0.10.8.2 && <0.13
- containers >=0.5.11.0 && <0.9
- crypton-connection >=0.3 && <0.5
- data-default-class >=0.1.2.0 && <0.3 Show all…
Dependents (2)
@hackage/xrefcheck, @hackage/ftp-client-conduit
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 []