http://www.perlmonks.org?node_id=719731


in reply to Comparing modification times like make

The Perl Cookbook recommends

-------------
Recipe 9.1. Getting and Setting Timestamps

9.1.1. Problem

You need to retrieve or alter when a file was last modified (written or changed) or accessed (read).

9.1.2. Solution

Use stat to get those times and utime to set them. Both functions are built into Perl:

($READTIME, $WRITETIME) = (stat($filename))[8,9];

utime($NEWREADTIME, $NEWWRITETIME, $filename);

9.1.3. Discussion
[...]
-----------

But I do not know how well this does on Windows.

Updated formatting error, to show the code correctly - thanks Perlbotics

Krambambuli
---
  • Comment on Re: Comparing modification times like make

Replies are listed 'Best First'.
Re^2: Comparing modification times like make
by cdarke (Prior) on Oct 27, 2008 at 13:40 UTC