R.utils (version 1.7.5)

openBrowser.System: Opens an HTML document using the OS default HTML browser

Description

Opens an HTML document using the OS default HTML browser. Note that this call is dependent on the operating system (currently only Windows and Unix are supported). The document given by query can either be a local file or a web page. If the query was given as non-url string, i.e. as a standard file pathname, the method will automatically check if the file exists and conform the query to a correct url starting with file:. The used url will be returned as a string. Any suggestion how implement this on Apple system are welcome!

Usage

System$openBrowser(query, ...)

Arguments

query
The path to document to be opened by the browser.

Value

  • Returns the url of the query.

synopsis

openBrowser.System(this, query, ...)

Details

It is hard to create a good cross-platform openBrowser() method, but here is one try. In the following text is the value returned by getOption("browser") and is the URL conformed query, which starts with either file: or http:. On a Windows system, if is not NULL, first shell.exec( ) is tried. If this fails, then shell.exec() is tried. Using this latter approach will not guarantee that an HTML browser will open the url, e.g. depending on the Windows file associations, a *.txt file might be opened by NotePad. However, it will most likely open something. If contains spaces, make sure it is quoted. On Unix systems, system() will be used to call: -remote "openURL()" 2> /dev/null || &

See Also

For more information see System.

Examples

Run this code
System$openBrowser("http://www.r-project.org/")

Run the code above in your browser using DataCamp Workspace