Hi,
Recently, I have updated RStudio. I am facing a problem in reading multiple CSV files. It is showing NULL. Please, help me if I am doing something wrong.
I am using the following script--
setwd("D:/work/")
> file <- list.files(pattern="*.csv")
> multifiles <- sapply(file, read.csv)
> file
NULL
> multifiles
list()
>
FYI, in the previous version of R, this same script is working fine
Thank you, any help is appreciated.