我正在使用R函数list.files来获取文件夹中的文件列表。我还想记录每个文件的创建,修改和访问时间
我该怎么做?我试过谷歌搜索,但没有找到任何有用的命令
下面的截图来自我的Windows机器。当我右键单击文件名并单击“属性”
时,我得到它
答案 0 :(得分:30)
查看file.info()
以了解此文件和其他文件属性:
## With a single path
p <- R.home()
file.info(p)$ctime
# [1] "2014-11-20 08:15:53 PST"
## With a vector of multiple paths
paths <- dir(R.home(), full.names=TRUE)
tail(file.info(paths)$ctime)
# [1] "2014-11-20 09:00:45 PST" "2014-11-20 09:00:47 PST"
# [3] "2014-11-20 09:00:47 PST" "2014-11-20 09:00:50 PST"
# [5] "2014-11-20 09:00:33 PST" "2014-11-20 09:00:33 PST"