Access a file's timestamps with Elixir
File.stat/2
will return data from the path passed to it, including the accessed time atime
and the modified time mtime
.
File.stat/2
will return data from the path passed to it, including the accessed time atime
and the modified time mtime
.