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.
-
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.
filePathToLString :: FilePath -> [Char]foundation Foundation.VFS conversion of a FilePath into a list of Char this function may throw exceptions
filePathToString :: FilePath -> Stringfoundation Foundation.VFS No documentation available.
filePathToLString :: FilePath -> [Char]foundation Foundation.VFS.FilePath conversion of a FilePath into a list of Char this function may throw exceptions
filePathToString :: FilePath -> Stringfoundation Foundation.VFS.FilePath No documentation available.
filePathLazy :: (ServerMonad m, MonadIO m) => String -> FilePath -> m Responsehappstack-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.
filePathSendFile :: (ServerMonad m, MonadIO m) => String -> FilePath -> m Responsehappstack-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.
filePathStrict :: (ServerMonad m, MonadIO m) => String -> FilePath -> m Responsehappstack-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.
-
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:
- System.FilePath.Posix.ByteString manipulates POSIX/Linux style RawFilePath values (with / as the path separator).
- System.FilePath.Windows.ByteString manipulates Windows style RawFilePath values (with either \ or / as the path separator, and deals with drives).
- System.FilePath.ByteString is an alias for the module appropriate to your platform.
-
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.