File::Touch(3pm) | User Contributed Perl Documentation | File::Touch(3pm) |
File::Touch - update file access and modification times, optionally creating files if needed
use File::Touch 0.12; @file_list = ('one.txt','../two.doc'); $count = touch(@file_list); use File::Touch; $reference_file = '/etc/passwd'; $touch_obj = File::Touch->new( reference => $reference_file, no_create => 1 ); @file_list = ('one.txt','../two.doc'); $count = $touch_obj->touch(@file_list);
This module provides both a functional and OO interface for changing the file access and modification times on files. It can optionally create the file for you, if it doesn't exist.
Note: you should specify a minimum version of 0.12, as per the SYNOPSIS, as that fixed an issue that affected systems that have sub-second granularity on those file times.
Here's a list of arguments that can be used with the object-oriented contruction:
use File::Touch; my @files = ('one','two','three'); my $count = touch(@files); print "$count files updated\n";
use File::Touch; my @files = ('one','two','three'); my $day = 24*60*60; my $time = time() + 30 * $day; my $ref = File::Touch->new( atime_only => 1, time => $time ); my $count = $ref->touch(@files); print "$count files updated\n";
use File::Touch; my @files = ('one','two','three'); my $day = 24*60*60; my $time = time() - 30 * $day; my $ref = File::Touch->new( mtime => $time, no_create => 1 ); my $count = $ref->touch(@files); print "$count files updated\n";
use File::Touch; my $date_restorer = File::Touch->new(reference => $file); # Update the contents of $file here. $date_restorer->touch($file);
<https://github.com/neilb/File-Touch>
Nigel Wetters Gourlay (nwetters@cpan.org)
Copyright (c) 2001,2007,2009 Nigel Wetters Gourlay. All Rights Reserved. This module is free software. It may be used, redistributed and/or modified under the same terms as Perl itself.
2022-10-13 | perl v5.36.0 |