Learn R Programming

broman (version 0.84)

openfile: Open a file

Description

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

Usage

openfile(file)

Value

None.

Arguments

file

File name (character string)

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
if (FALSE) openfile("myplot.pdf")

Run the code above in your browser using DataLab