@hackage ftp-client0.4.0.1
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.1 && <0.11
- connection >=0.2 && <0.3
- containers >=0.5.7.1 && <0.6
- exceptions >=0.8.3 && <0.9 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 []