2014-11-21 70 views
4

我正在使用R函數list.files獲取文件夾中的文件列表。我還想記錄每個文件的創建,修改和訪問時間R創建文件時找到時間

我該怎麼做?我試圖谷歌搜索,但沒有發現任何有用的命令

下面的截圖是從我的Windows機器。我把它當我右擊一個文件名,然後單擊「屬性」

enter image description here

回答

10

退房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"