calendar (version 0.0.1)

ic_write: Write ics file

Description

Write ics file

Usage

ic_write(ic, file)

Arguments

ic

object of class ical

file

ics file to write

Examples

Run this code
# NOT RUN {
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
# }

Run the code above in your browser using DataLab