我想知道是否存在一个函数或链接或任何方法可以像R中的list.files()
函数一样工作,但是存储在github存储库中的文件夹上。
示例github存储库文件夹:https://github.com/KZPS/Spotkania/tree/master/Matteo/literature
感谢您的任何建议!
答案 0 :(得分:11)
以这种方式:
library(httr)
req <- GET("https://api.github.com/repos/KZPS/Spotkania/git/trees/master?recursive=1")
stop_for_status(req)
filelist <- unlist(lapply(content(req)$tree, "[", "path"), use.names = F)
grep("Matteo/literature/", filelist, value = TRUE, fixed = TRUE)
# [1] "Matteo/literature/Subsetting.pdf"
# [2] "Matteo/literature/datatable-intro.pdf"
您可以轻松地从中构建一个函数list.files.github
。
答案 1 :(得分:-1)
我分叉了repo然后克隆了我本地目录上的fork。我将分叉目录作为我的工作目录,并且能够使用list.files()