R

How to change a file’s last modified date with R

This relatively quick post goes through how to change a file’s last modified date with base R.

How to change a file’s modified time with R

Let’s say we have a file, test.txt. What if we want to change the last modified date of the file (let’s suppose the file’s not that important)? Let’s say, for instance, we want to make a file have a last modified date back in the 1980’s. We can do that with one line of code.

First, let’s use file.info to check the current modified date of some file called test.txt.


file.info("test.txt")

We can see above by looking at mtime that this file was last modified December 4th, 2018.

Now, we can use a function called Sys.setFileTime to change the modified date to any date including or after January 1, 1970.


Sys.setFileTime("test.txt", "1980-12-04")

The base R function above takes the file name as the first parameter, and the date for the second parameter. If we use file.info on this file, we can see the newly changed last modified date – set back in 1980!

If we want to change the modified dates for all the files in a directory, we could do this:


sapply(list.files("/path/to/some/directory", full.names = TRUE), 
                  function(FILE) Sys.setFileTime(FILE, "1975-01-01"))

The above code will change the last modified time of every file in the directory specified to be January 1, 1975.

You can also, to an extent, make the last modified time some date in the future (up to 2038 as of this writing).


sapply(list.files("/path/to/some/directory", full.names = TRUE), 
                  function(FILE) Sys.setFileTime(FILE, "2038-01-18"))

Please check out my other R posts here, or subscribe via the right side of the page to receive updates about new posts! To learn more about file manipulation in R, please click here.

Andrew Treadway

Recent Posts

Software Engineering for Data Scientists (New book!)

Very excited to announce the early-access preview (MEAP) of my upcoming book, Software Engineering for…

1 year ago

How to stop long-running code in Python

Ever had long-running code that you don't know when it's going to finish running? If…

2 years ago

Faster alternatives to pandas

Background If you've done any type of data analysis in Python, chances are you've probably…

3 years ago

Automated EDA with Python

In this post, we will investigate the pandas_profiling and sweetviz packages, which can be used…

3 years ago

How to plot XGBoost trees in R

In this post, we're going to cover how to plot XGBoost trees in R. XGBoost…

3 years ago

Python collections tutorial

In this post, we'll discuss the underrated Python collections package, which is part of the…

3 years ago