osink: Opens and Closes a 'sink' Connection

View source: R/osink.R

osinkR Documentation

Opens and Closes a sink Connection

Description

Opens and closes a sink connection.

Usage

osink(file, suffix, append=FALSE)

csink(file)

Arguments

file

File name. No sink is done if it has the value NULL.

suffix

Suffix which should be put next to the file name

append

Optional logical indicating whether console output should be appended to an already existing file. See argument append in base::sink.

See Also

base::sink

Examples

## The function 'osink' is currently defined as
function (file, suffix){
    if (!is.null(file)) {
        base::sink(paste0(file, suffix), split=TRUE)
       }
  }

## The function 'csink' is currently defined as
function (file){
    if (!is.null(file)) {
        base::sink()
        }
  }

CDM documentation built on Aug. 25, 2022, 5:08 p.m.