我在使用 pdftools::pdf_text() 函数在 pdf 文件中读取 R/Rstudio 时遇到问题。
dat <- pdf_text("Summary Payroll Register BY ENTITY SM HLM ONLY 081321.pdf")
Error in normalizePath(path.expand(path), winslash, mustWork) :
path[1]="Summary Payroll Register BY ENTITY SM HLM ONLY 081321.pdf": Access is denied
我在读取 csv 文件时没有遇到此问题:
dat <- read_csv('test.csv')
Parsed with column specification:
cols(
person = col_character(),
age = col_double()
)
我相信这个问题与我使用公司计算机的事实有关,并且我的文件不再保存在我的实际机器(桌面或文档文件夹)上,而是直接保存到公司网络共享驱动器。
关于解决方法的任何想法?