Copyright | © 2015-2019 Stack Builders Inc. |
---|---|
License | MIT |
Maintainer | Stack Builders <hackage@stackbuilders.com> |
Stability | experimental |
Portability | portable |
Safe Haskell | Safe |
Language | Haskell2010 |
System.AtomicWrite.Writer.LazyByteString.Binary
Description
Provides functionality to dump the contents of a Lazy ByteString to a file in binary mode.
Synopsis
- atomicWriteFile :: FilePath -> ByteString -> IO ()
- atomicWriteFileWithMode :: FileMode -> FilePath -> ByteString -> IO ()
Documentation
Arguments
:: FilePath | The path where the file will be updated or created |
-> ByteString | The content to write to the file |
-> IO () |
Creates or modifies a file atomically on POSIX-compliant systems while preserving permissions.
atomicWriteFileWithMode Source #
Arguments
:: FileMode | The mode to set the file to |
-> FilePath | The path where the file will be updated or created |
-> ByteString | The content to write to the file |
-> IO () |
Creates or modifies a file atomically on POSIX-compliant systems and updates permissions