| CARVIEW |
Select Language
HTTP/1.1 200 OK
Connection: keep-alive
Server: nginx/1.24.0 (Ubuntu)
Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=300
Content-Encoding: gzip
Via: 1.1 varnish, 1.1 varnish
Accept-Ranges: bytes
Age: 0
Date: Sat, 17 Jan 2026 01:31:45 GMT
X-Served-By: cache-dfw-kdfw8210067-DFW, cache-bom-vanm7210026-BOM
X-Cache: MISS, MISS
X-Cache-Hits: 0, 0
X-Timer: S1768613505.959860,VS0,VE296
Vary: Accept, Accept-Encoding
transfer-encoding: chunked
ftp-client: Transfer files with FTP and FTPS
[Skip to Readme]
ftp-client: Transfer files with FTP and FTPS
ftp-client is a library for communicating with an FTP server. It works over both a clear channel or TLS.
[Skip to Readme]
Downloads
- ftp-client-0.5.1.6.tar.gz [browse] (Cabal source package)
- Package description (revised from the package)
Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
| Versions [RSS] | 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.2.0.0, 0.3.0.0, 0.4.0.0, 0.4.0.1, 0.5.0.0, 0.5.0.1, 0.5.1.0, 0.5.1.1, 0.5.1.2, 0.5.1.3, 0.5.1.4, 0.5.1.5, 0.5.1.6 |
|---|---|
| Dependencies | 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), exceptions (>=0.10.3 && <0.11), network (>=2.6.3.6 && <3.3), transformers (>=0.5.6.2 && <0.7) [details] |
| License | LicenseRef-PublicDomain |
| Author | Megan Robinson |
| Maintainer | Flipstone Technology Partners |
| Uploaded | by janus at 2024-05-18T15:07:00Z |
| Revised | Revision 2 made by janus at 2025-04-10T15:47:52Z |
| Category | Web |
| Home page | https://github.com/flipstone/ftp-client |
| Source repo | head: git clone https://github.com/flipstone/ftp-client |
| Distributions | LTSHaskell:0.5.1.6, NixOS:0.5.1.6, Stackage:0.5.1.6 |
| Reverse Dependencies | 2 direct, 1 indirect [details] |
| Downloads | 8958 total (66 in the last 30 days) |
| Rating | 2.25 (votes: 2) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Last success reported on 2024-05-18 [all 1 reports] |
Readme for ftp-client-0.5.1.6
[back to package description]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 []