<?xml version="1.0" encoding="windows-1252"?>
<node id="1005144" title="Search for a file created today and rename it by appending the current date and copy it to a different location" created="2012-11-22 10:04:33" updated="2012-11-22 10:04:33">
<type id="115">
perlquestion</type>
<author id="1004654">
perlgb</author>
<data>
<field name="doctext">
&lt;p&gt;
Hi,
I have a minimum knowledge in perl and trying to get my head around to do a script.

I need to write a script that look for a file in a folder where modified/created date is today and and rename it by appending the current date at the end of the file name. 

Then copy it to a different location,
&lt;/p&gt;
&lt;p&gt;
File Name format - "ABC DEF GHI 3648.html" - This file is generated everyday with a random number(3468). 
&lt;/p&gt;
&lt;p&gt;
Need to rename it to - "ABC_DEF_GHI_22112012.html"

I have started with the below script,
&lt;/p&gt;
&lt;code&gt;
#!/usr/bin/perl 

use strict;

# Specify the folder for file search

my $startFolder = "D:\\XXX\\XXX\\";

opendir (DIR, $startFolder) || die "Can't access $startFolder";
 
 # to search for the document
 
foreach my $file (readdir(DIR))
    {
	
	#Modified today and specify the file pattern
		next unless (-M $file &lt;= 1 &amp;&amp; $file =~ m/\ABC DEF GHI/);
	
    }

closedir(DIR);

&lt;/code&gt;
&lt;p&gt;
The next step is to rename the file as specified above and copy it to a new location.

Please let me know the best way to do it.

Thanks.
&lt;/p&gt;</field>
</data>
</node>
