是否可以从R
中的UNC指定目录中读取文件?我不想在基础安装之外使用任何软件包。
答案 0 :(得分:6)
UNC名称工作正常,你只需要正确地逃脱它们。这对我有用:
read.csv('\\\\COMPUTER\\Directory\\file.txt')
答案 1 :(得分:3)
添加到nograpes回答...你可以通过使用正斜杠来避免逃避丑陋......这也适用
read.csv('//COMPUTER/Directory/file.txt')
答案 2 :(得分:2)
稍微跨平台的方法
# the two '' are required to represent the two leading slashes of the UNC path
read.csv(file.path('', '', 'COMPUTER', 'Directory' 'file.txt'))