| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
System.Directory.Machine
Documentation
directoryWalk :: ProcessT IO FilePath FilePath Source #
Recursively (breadth-first) walk thru the directory structure.
>>>runT (files <~ directoryWalk <~ source ["."])["./.gitignore",...
directoryWalk' :: (FilePath -> Bool) -> ProcessT IO FilePath FilePath Source #
A variant of directoryWalk with a predicate whether to descend
into particular directory.
directoryWalk' (not . isSuffixOf ".git")
Since: 0.2.1.0