Is it possible to read files from a UNC-specified directory in R? I\'d like to do it without using any packages beyond the base installation.
R
UNC names work fine, you just have to escape them correctly. This works for me:
read.csv('\\\\COMPUTER\\Directory\\file.txt')