Movatterモバイル変換


[0]ホーム

URL:


base-4.12.0.0: Basic libraries

Copyright(c) The University of Glasgow 1994-2008
Licensesee libraries/base/LICENSE
Maintainerlibraries@haskell.org
Stabilityinternal
Portabilitynon-portable
Safe HaskellTrustworthy
LanguageHaskell2010

GHC.IO.Handle.FD

Description

Handle operations implemented by file descriptors (FDs)

Synopsis

Documentation

stdin ::HandleSource#

A handle managing input from the Haskell program's standard input channel.

stdout ::HandleSource#

A handle managing output to the Haskell program's standard output channel.

stderr ::HandleSource#

A handle managing output to the Haskell program's standard error channel.

openFile ::FilePath ->IOMode ->IOHandleSource#

ComputationopenFilefile mode allocates and returns a new, open handle to manage the filefile. It manages input ifmode isReadMode, output ifmode isWriteMode orAppendMode, and both input and output if mode isReadWriteMode.

If the file does not exist and it is opened for output, it should be created as a new file. Ifmode isWriteMode and the file already exists, then it should be truncated to zero length. Some operating systems delete empty files, so there is no guarantee that the file will exist following anopenFile withmodeWriteMode unless it is subsequently written to successfully. The handle is positioned at the end of the file ifmode isAppendMode, and otherwise at the beginning (in which case its internal position is 0). The initial buffer mode is implementation-dependent.

This operation may fail with:

  • isAlreadyInUseError if the file is already open and cannot be reopened;
  • isDoesNotExistError if the file does not exist; or
  • isPermissionError if the user does not have permission to open the file.

Note: if you will be working with files containing binary data, you'll want to be usingopenBinaryFile.

openBinaryFile ::FilePath ->IOMode ->IOHandleSource#

LikeopenFile, but open the file in binary mode. On Windows, reading a file in text mode (which is the default) will translate CRLF to LF, and writing will translate LF to CRLF. This is usually what you want with text files. With binary files this is undesirable; also, as usual under Microsoft operating systems, text mode treats control-Z as EOF. Binary mode turns off all special treatment of end-of-line and end-of-file characters. (See alsohSetBinaryMode.)

openFileBlocking ::FilePath ->IOMode ->IOHandleSource#

LikeopenFile, but opens the file in ordinary blocking mode. This can be useful for opening a FIFO for writing: if we open in non-blocking mode then the open will fail if there are no readers, whereas a blocking open will block until a reader appear.

Since: 4.4.0.0

mkHandleFromFD :: FD ->IODeviceType ->FilePath ->IOMode ->Bool ->MaybeTextEncoding ->IOHandleSource#

fdToHandle :: FD ->IOHandleSource#

Turn an existing file descriptor into a Handle. This is used by various external libraries to make Handles.

Makes a binary Handle. This is for historical reasons; it should probably be a text Handle with the default encoding and newline translation instead.

fdToHandle' ::CInt ->MaybeIODeviceType ->Bool ->FilePath ->IOMode ->Bool ->IOHandleSource#

Old API kept to avoid breaking clients

handleToFd ::Handle ->IO FDSource#

Turn an existing Handle into a file descriptor. This function throws an IOError if the Handle does not reference a file descriptor.

Produced byHaddock version 2.20.0


[8]ページ先頭

©2009-2025 Movatter.jp