happy-opfs
    Preparing search index...

    Interface WriteOptions

    Options for writing files, including flags for creation and appending.

    interface WriteOptions {
        append?: boolean;
        create?: boolean;
    }
    Index

    Properties

    Properties

    append?: boolean

    Whether to append to the file if it already exists.

    false

    create?: boolean

    Whether to create the file if it does not exist.

    true