@hackage ftp-client0.2.0.0
Transfer files with FTP and FTPS
Categories
License
LicenseRef-PublicDomain
Maintainer
mrobinson7627@gmail.com
Links
Versions
Installation
Dependencies (6)
- attoparsec >=0.10 && <0.14
- base >=4.7 && <5
- bytestring >=0.10.8.1 && <0.11
- connection >=0.2 && <0.3
- network >=2.6.3.1 && <2.7
- transformers >=0.5.2.0 && <0.6 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 =<< nlstS h []