| Copyright | (c) Reuben D'Netto 2016 |
|---|---|
| License | Apache 2.0 |
| Maintainer | rdnetto@gmail.com |
| Portability | GNU |
| Safe Haskell | Safe |
| Language | Haskell2010 |
System.Directory.Glob.GNU
Description
This module exports GlobFlag values which are only supported on platforms using the GNU implementation of glob.
Using them on non-GNU platforms will result in a compile-time failure.
If you wish to defer the failure to run-time, you should also import System.Directory.Glob.GNU.Compat.
Synopsis
Documentation
globBrace :: GlobFlag Source #
Enable CSH-style brace expansion. e.g. foo.{txt,md}. Supports nested braces. (GNU extension)
globNoMagic :: GlobFlag Source #
Enables globNoCheck if the pattern contains no metacharacters. (GNU extension)
globOnlyDir :: GlobFlag Source #
Only return directories, if it is cheap to do so. (GNU extension)
globPeriod :: GlobFlag Source #
Allow leading . to be matched by metacharacters.
globTildeCheck :: GlobFlag Source #
Like globTilde, but return no matches if there is no such user.