0

我想阅读桌面上的所有 .pdf,但是当我输入下面的代码时,它显示

path_mot <- list.files("/Users/wangoe2345/Desktop", "*.pdf")
as.list(path_mot)
mot <- lapply(path_mot, 
              pdftools::pdf_text)
Error in normalizePath(pdf, mustWork = TRUE) : 
  path[1]="01_motivation_張翔淵.pdf": No such file or directory

“01_motivation_jason.pdf”是我桌面上的 pdf 文件。感谢您的友好回应。

4

1 回答 1

0

尝试使用full.names = TRUEin 的完整路径list.files

path_mot <- list.files("/Users/wangoe2345/Desktop", "\\.pdf$", full.names = TRUE)
于 2020-03-13T09:58:11.903 回答