Hoogle Search

Within LTS Haskell 24.5 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. type FilePath = String

    xmonad-contrib XMonad.Config.Prime

    File and directory names are values of type String, whose precise meaning is operating system dependent. Files can be opened, yielding a handle which can then be used to operate on the contents of that file.

  2. filePathToLString :: FilePath -> [Char]

    foundation Foundation.VFS

    conversion of a FilePath into a list of Char this function may throw exceptions

  3. filePathToString :: FilePath -> String

    foundation Foundation.VFS

    No documentation available.

  4. filePathToLString :: FilePath -> [Char]

    foundation Foundation.VFS.FilePath

    conversion of a FilePath into a list of Char this function may throw exceptions

  5. filePathToString :: FilePath -> String

    foundation Foundation.VFS.FilePath

    No documentation available.

  6. filePathLazy :: (ServerMonad m, MonadIO m) => String -> FilePath -> m Response

    happstack-server Happstack.Server.FileServe.BuildingBlocks

    Send the specified file with the specified mime-type using lazy ByteStrings NOTE: assumes file exists and is readable by the server. See serveFileUsing. WARNING: No security checks are performed.

  7. filePathSendFile :: (ServerMonad m, MonadIO m) => String -> FilePath -> m Response

    happstack-server Happstack.Server.FileServe.BuildingBlocks

    Send the specified file with the specified mime-type using sendFile() NOTE: assumes file exists and is readable by the server. See serveFileUsing. WARNING: No security checks are performed.

  8. filePathStrict :: (ServerMonad m, MonadIO m) => String -> FilePath -> m Response

    happstack-server Happstack.Server.FileServe.BuildingBlocks

    Send the specified file with the specified mime-type using strict ByteStrings NOTE: assumes file exists and is readable by the server. See serveFileUsing. WARNING: No security checks are performed.

  9. package filepath-bytestring

    Library for manipulating RawFilePaths in a cross platform way. This package provides functionality for manipulating RawFilePath values. It can be used as a drop in replacement for the filepath library to get the benefits of using ByteStrings. It provides three modules:

    All three modules provide the same API, and the same documentation (calling out differences in the different variants). This package is now deprecated, since filepath 1.4.100.0 provides an OsPath type that is based on a bytestring. See https:/hasufell.github.ioposts/2022-06-29-fixing-haskell-filepaths.html

  10. filePathConduit :: forall (m :: Type -> Type) . (MonadThrow m, MonadResource m) => ConduitM FilePath (Either FileInfo ByteString) m ()

    tar-conduit Data.Conduit.Tar

    Turn a stream of file paths into a stream of FileInfo and file content. All paths will be decended into recursively.

Page 9 of many | Previous | Next