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 34 35
|
{- |
Module : System.File.OsPath
Copyright : (c) Julian Ospald 2023-2024
License : BSD3
Maintainer : hasufell@posteo.de
Stability : stable
Portability : portable
This module mimics base API wrt file IO, but using 'OsPath'.
-}
module System.File.OsPath (
openBinaryFile
, withFile
, withBinaryFile
, withFile'
, withBinaryFile'
, readFile
, readFile'
, writeFile
, writeFile'
, appendFile
, appendFile'
, openFile
, openExistingFile
, openTempFile
, openBinaryTempFile
, openTempFileWithDefaultPermissions
, openBinaryTempFileWithDefaultPermissions
) where
import System.File.OsPath.Internal
import Prelude ()
|