Compared to [file.info]
the full results of a stat(2)
system call are
returned and some columns are returned as S3 classes to make manipulation
more natural. On systems which do not support all metadata (such as Windows)
default values are used.
file_info(path, fail = TRUE, follow = FALSE)file_size(path, fail = TRUE)
A data.frame with metadata for each file. Columns returned are as follows.
The input path, as a fs_path()
character vector.
The file type, as a factor of file types.
The file size, as a fs_bytes()
numeric vector.
The file permissions, as a fs_perms()
integer vector.
The time of last data modification, as a POSIXct datetime.
The file owner name - as a character vector.
The file group name - as a character vector.
The file device id - as a numeric vector.
The number of hard links to the file - as a numeric vector.
The special device id of the file - as a numeric vector.
The inode of the file - as a numeric vector.
The optimal block for the file - as a numeric vector.
The number of blocks allocated for the file - as a numeric vector.
The user defined flags for the file - as an integer vector.
The generation number for the file - as a numeric vector.
The time of last access - as a POSIXct datetime.
The time of last file status change - as a POSIXct datetime.
The time when the inode was created - as a POSIXct datetime.
A character vector of one or more paths.
Should the call fail (the default) or warn if a file cannot be accessed.
If TRUE
, symbolic links will be followed (recursively) and
the results will be that of the final file rather than the link.
dir_info()
to display file information for files in a given
directory.
.old_wd <- setwd(tempdir())
write.csv(mtcars, "mtcars.csv")
file_info("mtcars.csv")
# Files in the working directory modified more than 20 days ago
files <- file_info(dir_ls())
files$path[difftime(Sys.time(), files$modification_time, units = "days") > 20]
# Cleanup
file_delete("mtcars.csv")
setwd(.old_wd)
Run the code above in your browser using DataLab