@hackage ftp-client0.4.0.0
Transfer files with FTP and FTPS
Categories
License
LicenseRef-PublicDomain
Maintainer
mrobinson7627@gmail.com
Links
Versions
Installation
Dependencies (7)
- attoparsec >=0.10 && <0.14
- base >=4.8 && <5
- bytestring >=0.10.8.1 && <0.11
- connection >=0.2 && <0.3
- exceptions >=0.8.3 && <0.9
- network >=2.6.3.1 && <2.7 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 []