Opens the file for writing. This will either create the file
if it doesn't exist or overwrite it if it does.
You must manually call System.IO.Stream.SetLength(System.Int64)
when done to ensure previously existing data is truncated.
- Namespace
- Statiq.Common
- Containing Type
- IFile
Syntax
Stream OpenWrite(bool createDirectory = true)
Parameters
Name |
Type |
Description |
createDirectory |
bool |
Will create any needed directories that don't already exist if set to true . |
Return Value
Type |
Description |
Stream |
The stream. |