assuming you never worry about merging, this should workBTW, Unix or DOS.Start an external process to do a Unix touch command (or cygwin for DOS)
#!/...../iw-perl/bin/iwperluse strict;use warnings;...sub touch_files{ my $file_list = shift; my $ntime = time; utime($ntime, $ntime, @{$file_list});}...