MIT licensed by Michael Snoyman
Maintained by [email protected]
This version can be pinned in stack with:fsnotify-conduit-0.1.1.1@sha256:669438713758f56377b44da41a748ef79eb302b17679d1bfd1f0b4563985ce43,1699

Module documentation for 0.1.1.1

fsnotify-conduit

Get filesystem notifications as a stream of events, using the conduit package to handle the stream. This uses the fsnotify package, which uses OS-specific file notification APIs for efficiency. Simple usage example, a program which will print all events for the given directory tree:

#!/usr/bin/env stack
{- stack
     --resolver lts-6.15
     --install-ghc
     runghc
     --package fsnotify-conduit
     --package conduit-combinators
 -}

import Conduit
import Data.Conduit.FSNotify
import System.Environment (getArgs)

main :: IO ()
main = do
    args <- getArgs
    dir <-
        case args of
            [dir] -> return dir
            _ -> error $ "Expected one argument (directory to watch)"
    runResourceT
        $ sourceFileChanges (setRelative False $ mkFileChangeSettings dir)
       $$ mapM_C (liftIO . print)

Changes

0.1.1.1

  • Support fsnotify 0.3

0.1.1.0

  • Drop older GHC support
  • Make test suite more reliable #2
  • Provide acquireSourceFileChanges

0.1.0.0

  • Initial release