Hi I'm not sure if I understood your problem correctly.. Perhaps you are looking for something like this?
Best regards, Roger Result <- c() yourPath <- "c:\\temp" filesInDir <- dir(yourPath) for(file in filesInDir){ fileInfo <- paste(yourPath,file,sep="\\") tmp <- read.csv(fileInfo) # assign(file,tmp) # Result <- c(Result,tmp) } [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.