我正在使用read.csv从我的csv文件导入数据。 我还想将文件的Created或Modified Date加载到我新导入的表的末尾的新列。 如何将文件的创建日期或修改日期读入变量? 感谢
答案 0 :(得分:1)
此功能可能效果很好:
read.tables <- function(file.names, ...) {require(plyr)
ldply(file.names, function(fn) data.frame(read.table(fn, ...), Filename=fn, date.extraction=date(file.info(fn)$mtime)))}
我只是修改了本主题中提供的功能:how to read table multiple files into a single table in r