@hackage pathwalk0.2.1.0
Path walking utilities for Haskell programs
Categories
License
MIT
Maintainer
xena@yolo-swag.com
Links
Versions
Installation
Dependencies (4)
- base >=3 && <5
- directory >=1.2
- filepath >=1.3
- transformers >=0.4 Show all…
Dependents (6)
@hackage/rob, @hackage/acme-everything, @hackage/hwormhole, @hackage/dahdit-audio, @hackage/argon, @hackage/hsec-tools
System.Directory.PathWalk is an implementation of Python's excellent
os.walk function. Given a root directory, it recursively scans all
subdirectories, calling a callback with directories and files it finds.
Importantly, it calls the callback as soon as it finishes scanning each
directory to allow the caller to begin processing results immediately.
Maximum memory usage is O(N+M) where N is the depth of the tree and M is the maximum number of entries in a particular directory.
import System.Directory.PathWalk
pathWalk "some/directory" $ \root dirs files -> do
forM_ files $ \file ->
when (".hs" `isSuffixOf` file) $ do
putStrLn $ joinPath [root, file]