@hackage ftp-client0.5.1.2
Transfer files with FTP and FTPS
Categories
License
LicenseRef-PublicDomain
Maintainer
mrobinson7627@gmail.com
Links
Versions
Installation
Dependencies (8)
- attoparsec >=0.10 && <0.14
- base >=4.8 && <5
- bytestring >=0.10.8.2 && <0.11
- connection >=0.2 && <0.4
- containers >=0.5.11.0 && <0.7
- exceptions >=0.10.0 && <0.11 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 []