ftphs icon indicating copy to clipboard operation
ftphs copied to clipboard

FTP client and server library [Haskell]

Results 10 ftphs issues
Sort by recently updated
recently updated
newest added

`connectFTP` doesn't close sockets on connection failure, only throwing an exception. I'm not sure whether it would be more appropriate to fix in `connectFTP` itself or in MissingH's `connectTCP`/`connectTCPAddr` (since...

I also removed the `unsafeInterleaveIO` part because I don't know what it does. Seems to work without it. If it does something crucial which I'm missing, you'll have to add...

This program: ``` import Data.List import Network.FTP.Client desiredFile x = ".xz.sig" `isSuffixOf` x main = do enableFTPDebugging h1

Since we are dealing with binary data, why is it not returning a `ByteString`?

Hi; thanks for the great package! I was wondering if there were any plans to bring this package onto the [stackage](https://www.stackage.org/) index? (If you wanted to, it's as simple as...

Hi! I have a problem, I think this package doesnt work with new ghc. my code: ``` import Network.FTP.Client main = do ftpConn = putStrLn . unlines quit ftpConn ```...

I am not entirely sure whether this issue is with the library or the Windows 7 64bit system I am using. I am new to Haskell and was trying to...

Hi John, I was to implement some FTP server thing and found ftphs. But I found transferring files in binary mode didn't work in my environment(CentOS 6.4). This is because...