Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- getDirRecursive :: FilePath -> IO [FilePath]
- getSubdirsRecursive :: FilePath -> IO [FilePath]
- getFilesRecursive :: FilePath -> IO [FilePath]
- getDirFiltered :: (FilePath -> IO Bool) -> FilePath -> IO [FilePath]
Documentation
getDirRecursive :: FilePath -> IO [FilePath] Source #
Recursively get all files and subdirectories in the given directory.
getSubdirsRecursive :: FilePath -> IO [FilePath] Source #
Recursively get all subdirectories in the given directory.
Since: 0.2.1.0
getFilesRecursive :: FilePath -> IO [FilePath] Source #
Recursively get all files in the given directory.
Since: 0.2.3.0
Recursively get all files and subdirectories in the given directory that
satisfy the given predicate. Note that the content of subdirectories not
matching the filter is ignored. In particular, that means something like
getDirFiltered doesFileExist
will not recursively return all files.
Since: 0.2.2.0