ic_write: Write ics file

View source: R/ic_read.R

ic_writeR Documentation

Write ics file

Description

Write ics file

Usage

ic_write(ic, file, zulu = FALSE)

Arguments

ic

object of class ical

file

ics file to write

zulu

is the datetime in Zulu time? FALSE by default, which means the calendar's current timezone is used.

Examples

ic <- ical(ical_example)
ic_write(ic, file.path(tempdir(), "ic.ics"))
f <- system.file("extdata", "example.ics", package = "calendar")
identical(readLines(file.path(tempdir(), "ic.ics")), readLines(f))
f <- system.file("extdata", "england-and-wales.ics", package = "calendar")
ics_df <- ic_read(f)
ic_write(ics_df, file.path(tempdir(), "ic.ics"))
# test similarity between files with diff tool like meld - from shell:
# meld ic.ics inst/extdata/england-and-wales.ics

ATFutures/ical documentation built on May 5, 2024, 10:34 a.m.