Skip to content
/ owd Public

R package to open the current working directory in a computer's file manager.

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

Feakster/owd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

owd: Open Working Directory

license platform-support lifecycle github-workflow CRANstatus CRANdownloads

Description

R package to open the current working directory (or a given directory path) in your computer’s file manager.

Compatibility

The package may be installed on any version of R since 2.13.0, (coinciding with the migration of the normalizePath() function from the utils package to the base package). Technically, for versions 2.13.0 > R ≥ 2.1.0 the package may still be installed if the end user was to: checkout the Git repository, remove the line containing “Depends: R (>= 2.13)” from the DESCRIPTION file, add a line to the DESCRIPTION file containing “Imports: utils”, and add a line to the NAMESPACE file containing “importsFrom(utils, normalizePath)”.

Installation

You can install a stable version of the package from CRAN with:

install.packages("owd")

Alternatively, you can install the latest development version from GitHub with:

if (!{'remotes' %in% installed.packages()}) install.packages('remotes')
remotes::install_github('Feakster/owd')

Examples

Some simple use cases:

## Load package namespace
library(owd)

## Open current working directory
owd()

## Open a directory ('foo') using a relative path
owd('foo') # or...
owd('./foo')

## Making use of tilde expansion
owd('~/foo')

Known issues

See Issues on the owd GitHub repository.

About

R package to open the current working directory in a computer's file manager.

Topics

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Languages