system-filepath-0.4.14: High-level, byte-based file and directory path manipulations (deprecated)

Copyright2010 John Millikin
LicenseMIT
Maintainerjmillikin@gmail.com
Portabilityportable
Safe HaskellSafe
LanguageHaskell98

Filesystem.Path.CurrentOS

Contents

Description

Re‐exports contents of Filesystem.Path.Rules, defaulting to the current OS’s rules when needed.

Also enables Show and IsString instances for FilePath.

Synopsis

Documentation

currentOS :: Rules platformTextFormat Source #

Type conversions

toText :: FilePath -> Either Text Text Source #

Attempt to convert a FilePath to human‐readable text.

If the path is decoded successfully, the result is a Right containing the decoded text. Successfully decoded text can be converted back to the original path using fromText.

If the path cannot be decoded, the result is a Left containing an approximation of the original path. If displayed to the user, this value should be accompanied by some warning that the path has an invalid encoding. Approximated text cannot be converted back to the original path.

This function ignores the user’s locale, and assumes all file paths are encoded in UTF8. If you need to display file paths with an unusual or obscure encoding, use encode and then decode them manually.

Since: 0.2

fromText :: Text -> FilePath Source #

Convert human‐readable text into a FilePath.

This function ignores the user’s locale, and assumes all file paths are encoded in UTF8. If you need to create file paths with an unusual or obscure encoding, encode them manually and then use decode.

Since: 0.2

encode :: FilePath -> platformTextFormat Source #

Convert a FilePath to a platform‐specific format, suitable for use with external OS functions.

Note: The type platformTextFormat can change depending upon the underlying compilation platform. Consider using toText or encodeString instead. See Rules for more information.

Since: 0.3

decode :: platformTextFormat -> FilePath Source #

Convert a FilePath from a platform‐specific format, suitable for use with external OS functions.

Note: The type platformTextFormat can change depending upon the underlying compilation platform. Consider using fromText or decodeString instead. See Rules for more information.

Since: 0.3

encodeString :: FilePath -> String Source #

Attempt to convert a FilePath to a string suitable for use with functions in System.IO. The contents of this string are platform‐dependent, and are not guaranteed to be human‐readable. For converting FilePaths to a human‐readable format, use toText.

Since: 0.3.1

decodeString :: String -> FilePath Source #

Attempt to parse a FilePath from a string suitable for use with functions in System.IO. Do not use this function for parsing human‐readable paths, as the character set decoding is platform‐dependent. For converting human‐readable text to a FilePath, use fromText.

Since: 0.3.1

Rule‐specific path properties

valid :: FilePath -> Bool Source #

Check if a FilePath is valid; it must not contain any illegal characters, and must have a root appropriate to the current Rules.

splitSearchPath :: platformTextFormat -> [FilePath] Source #

Split a search path, such as $PATH or $PYTHONPATH, into a list of FilePaths.

splitSearchPathString :: String -> [FilePath] Source #

splitSearchPathString is like splitSearchPath, but takes a string encoded in the format used by System.IO.

Orphan instances