atomic-write-0.2.0.6: Atomically write to a file

Copyright© 2015-2017 Stack Builders Inc.
LicenseMIT
MaintainerStack Builders <hackage@stackbuilders.com>
Stabilityexperimental
Portabilityportable
Safe HaskellSafe
LanguageHaskell2010

System.AtomicWrite.Writer.ByteStringBuilder

Description

Provides functionality to dump the contents of a ByteStringBuilder to a file.

Synopsis

Documentation

atomicWriteFile Source #

Arguments

:: FilePath

The path where the file will be updated or created

-> Builder

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 
-> FilePath

The path where the file will be updated or created

-> Builder

The content to write to the file

-> IO () 

Creates or modifies a file atomically on POSIX-compliant systems and updates permissions.