Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. data Path b t

    path OsPath.Posix

    Path of some base and type. The type variables are:

    • b — base, the base location of the path; absolute or relative.
    • t — type, whether file or directory.
    Internally it is a PosixPath, which can be of two formats only:
    1. File format: file.txt, foo/bar.txt, /foo/bar.txt
    2. Directory format: foo/, /foo/bar/
    All directories end in a trailing separator. There are no duplicate path separators //, no .., no ./, no ~/, etc.

  2. data PathException

    path OsPath.Posix

    Exceptions that can occur during path operations.

  3. type PathParseException = PathException

    path OsPath.Posix

    Deprecated: Please use PathException instead.

  4. data Path b t

    path OsPath.Windows

    Path of some base and type. The type variables are:

    • b — base, the base location of the path; absolute or relative.
    • t — type, whether file or directory.
    Internally it is a WindowsPath, which can be of two formats only:
    1. File format: file.txt, foo/bar.txt, /foo/bar.txt
    2. Directory format: foo/, /foo/bar/
    All directories end in a trailing separator. There are no duplicate path separators //, no .., no ./, no ~/, etc.

  5. data PathException

    path OsPath.Windows

    Exceptions that can occur during path operations.

  6. type PathParseException = PathException

    path OsPath.Windows

    Deprecated: Please use PathException instead.

  7. module Path

    This library provides a well-typed representation of paths in a filesystem directory tree. Both Path.Posix and Path.Windows provide the same interface. This module will reexport the appropriate module for your platform.

  8. module Path.Internal.Posix

    Internal types and functions.

  9. newtype Path b t

    path Path.Internal.Posix

    Path of some base and type. The type variables are:

    • b — base, the base location of the path; absolute or relative.
    • t — type, whether file or directory.
    Internally is a string. The string can be of two formats only:
    1. File format: file.txt, foo/bar.txt, /foo/bar.txt
    2. Directory format: foo/, /foo/bar/
    All directories end in a trailing separator. There are no duplicate path separators //, no .., no ./, no ~/, etc.

  10. Path :: FilePath -> Path b t

    path Path.Internal.Posix

    No documentation available.

Page 187 of many | Previous | Next