r open directories - Search
About 1,400,000 results
    Kizdar net | Kizdar net | Кыздар Нет
    Upvotes26Top Answeranswered Aug 27, 2012 at 3:10

    If you actually want a file browser you could create a function to open the directory. This is done differently based on the operating system you're using but this should cover most bases

    opendir <- function(dir = getwd()){
    if (.Platform['OS.type'] == "windows"){
    shell.exec(dir)
    } else {
    system(paste(Sys.getenv("R_BROWSER"), dir))
    }
    }

    If you don't need it to be cross platform you can reduce it down to just the code for your OS. But if you just want to view the files in a given directory then using dir should be good enough.

    Content Under CC-BY-SA license
    Was this helpful?
     
  1. WEBThis post provides a basic introduction on how to use RStudio Projects and structure your working directories - which is well worth a read if you are …

    • Estimated Reading Time: 11 mins
    • RStudio Projects and Working Directories: A …

      WEBThis post provides a basic introduction on how to use RStudio Projects and structure your working directories - which is well worth a read if you are still using setwd() to set your directories! Although the R working directory

    • Complete List of Working Open Directories From r/OpenDirectories

    • 1.7 Working directories | An Introduction to R

    • OD Search Tool - open-directories.reecemercer.dev

    • Working with files and folders in R - Master Data Analysis

    • Running RStudio and Setting Up Your Working Directory - Easy …

    • How to Easily Manipulate Files and Directories in R - Datanovia

    • Accessing data in different folders in a working directory in r

    • GitHub - Devaro3/awesome-opendirectories: Websites for data …

    • Open a File Folder in R | R-bloggers

    • OS-independent way to select directory interactively in R

    • Navigating folders in RStudio: a beginner’s guide | R-bloggers

    • Cybersecurity treasures in open directories - ANY.RUN Blog

    • Open multiple files and assign to individual variables using R

    • r - Opening files from working directory - Stack Overflow