The pathtype package
This module provides type-safe access to filepath manipulations.
It is designed to be imported instead of System.FilePath and System.Directory and is intended to provide versions of functions from those modules which have equivalent functionality but are more typesafe.
The heart of this module is the Path ar fd abstract type which represents file and directory paths. The idea is that there are two phantom type parameters - the first should be Abs or Rel, and the second File or Dir. A number of type synonyms are provided for common types:
type AbsFile = Path Abs File type RelFile = Path Rel File type AbsDir = Path Abs Dir type RelDir = Path Rel Dir type RelPath fd = Path Rel fd type DirPath ar = Path ar Dir
The type of the combine (aka </>) function gives the idea:
(</>) :: DirPath ar -> RelPath fd -> Path ar fd
Together this enables us to give more meaningful types to a lot of the functions, and (hopefully) catch a bunch more errors at compile time.
The basic API (and properties satisfied) are heavily influenced by Neil Mitchell's System.FilePath module.
WARNING -- THE API IS NOT YET STABLE -- WARNING
Properties
| Versions | 0.0.1, 0.0.2, 0.0.3, 0.5, 0.5.1, 0.5.2 |
|---|---|
| Dependencies | base (≥3 & <5), directory (1.*), QuickCheck (≥1.2 & <2) |
| License | BSD3 |
| Author | Ben Moseley |
| Maintainer | ben@moseley.name |
| Stability | experimental |
| Category | System |
| Upload date | Sat Nov 7 18:09:09 UTC 2009 |
| Uploaded by | BenMoseley |
| Built on | ghc-6.10, ghc-6.12 |
| Distributions | NixOS: 0.5.2 |
Modules
- System
Downloads
- pathtype-0.0.1.tar.gz (Cabal source package)
- package description (included in the package)