File: PlatformPath.hs

package info (click to toggle)
haskell-file-io 0.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 136 kB
  • sloc: haskell: 744; makefile: 3
file content (33 lines) | stat: -rw-r--r-- 617 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{- |
Module      :  System.File.PlatformPath
Copyright   :  (c) Julian Ospald 2023-2024
License     :  BSD3

Maintainer  :  hasufell@posteo.de
Stability   :  stable
Portability :  portable

This module is only interesting when you are implementing low-level libraries
based on 'OsPath' API.

Usually you want "System.File.OsPath".
-}
module System.File.PlatformPath (
  openBinaryFile
, withFile
, withBinaryFile
, withFile'
, withBinaryFile'
, readFile
, readFile'
, writeFile
, writeFile'
, appendFile
, appendFile'
, openFile
, openExistingFile
) where

import System.File.PlatformPath.Internal
import Prelude ()