Learn R Programming

broman (version 0.72-4)

openfile: Open a file

Description

Open a file using [base::system() and "open" (well, actually "start" on Linux).

Usage

openfile(file)

Arguments

file

File name (character string)

Value

None.

Details

I'd thought that to open a file you'd use open in MacOS and start in Windows, but system("start myfile.pdf") doesn't work in Windows, and rather system("open myfile.pdf") does, so here we're just using open, except on Linux where at least on my system, you can use "start".

Examples

Run this code
# NOT RUN {
openfile("myplot.pdf")
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab