github_ls_single {supportR} | R Documentation |
List Objects in a Single Folder of a GitHub Repository
Description
Accepts a GitHub repository URL and identifies all files in the specified folder. If no folder is specified, lists top-level repository contents. This function only works on repositories (public or private) to which you have access.
Usage
github_ls_single(repo = NULL, folder = NULL)
Arguments
repo |
(character) full URL for a GitHub repository (including "github.com") |
folder |
(NULL/character) either |
Value
(dataframe) two-column dataframe including (1) the names of the contents and (2) the type of each content item (e.g., file/directory/etc.)
Examples
## Not run:
# List contents of the top-level of the `supportR` package repository
github_ls_single(repo = "https://github.com/njlyon0/supportR")
## End(Not run)
[Package supportR version 1.4.0 Index]