Go to file
Julian Ospald 908513da2b
Prettify doctests
2016-05-23 00:52:27 +02:00
benchmarks Merge posix-paths into hpath 2016-05-09 13:31:20 +02:00
cbits Merge posix-paths into hpath 2016-05-09 13:31:20 +02:00
src Prettify doctests 2016-05-23 00:52:27 +02:00
test Add missing (<$>) imports 2016-05-09 18:53:26 +02:00
.ghci Basic Path type with parsers and test suite 2015-05-08 13:14:54 +02:00
.gitignore Fork chrisdone's path library 2016-03-08 22:53:42 +01:00
.travis.yml Raise cabal version to fix travis build 2016-05-09 19:15:18 +02:00
CHANGELOG Release 0.7.0 2016-05-18 14:02:08 +02:00
LICENSE Add IO modules, previously from HSFM 2016-05-09 16:53:31 +02:00
README.md Beautify 2016-05-19 01:29:08 +02:00
Setup.hs First commit 2015-05-07 20:15:42 +02:00
doctests-hpath.hs TESTS: minor doctest cleanup 2016-05-09 14:17:12 +02:00
doctests-posix.hs Merge posix-paths into hpath 2016-05-09 13:31:20 +02:00
hpath.cabal Release 0.7.0 2016-05-18 14:02:08 +02:00

README.md

HPath

Gitter chat Hackage version Build Status

Support for well-typed paths in Haskell. Also provides ByteString based filepath manipulation.

Motivation

The motivation came during development of hsfm which has a pretty strict File type, but lacks a strict Path type, e.g. for user input.

The library that came closest to my needs was path, but the API turned out to be oddly complicated for my use case, so I decided to fork it.

Similarly, posix-paths was exactly what I wanted for the low-level operations, but upstream seems dead, so it is forked as well and merged into this library.

Goals

  • well-typed paths
  • high-level API to file operations like recursive directory copy
  • safe filepath manipulation, never using String as filepath, but ByteString
  • still allowing sufficient control to interact with the underlying low-level calls

Differences to 'path'

  • doesn't attempt to fake IO-related information into the path, so whether a path points to a file or directory is up to your IO-code to decide...
  • trailing path separators will be preserved if they exist, no messing with that
  • uses safe ByteString for filepaths under the hood instead of unsafe String
  • fixes broken dirname
  • renames dirname/filename to basename/dirname to match the POSIX shell functions
  • introduces a new Path Fn for safe filename guarantees and a RelC class
  • allows pattern matching via unidirectional PatternSynonym
  • uses simple doctest for testing
  • allows ~/ as relative path, because on posix level ~ is just a regular filename that does NOT point to $HOME
  • remove TH, it sucks

Differences to 'posix-paths'

  • hasTrailingPathSeparator behaves in the same way as System.FilePath
  • dropTrailingPathSeparator behaves in the same way as System.FilePath
  • added various functions like isValid, normalise and equalFilePath
  • uses the word8 package for save word8 literals instead of OverloadedStrings
  • has custom versions of openFd and getDirectoryContents