"Not working" is pretty vague -- can you narrow it down? Does it not find the appropriate files? Does it find them but not rename them properly? I see some variables that are undeclared ($get_each_directory, $mrn).. is this all your code? A few things I noticed off the bat though:
my $current_path = 'C:\\temp\\';
Either escape your backslashes or use single quotes, but not both.
my $get_files = grep { !-d } @process_file;
foreach my $get_files (@process_file) {
Do you mean to iterate through each of the non-directories? Then you probably meant
foreach my $get_files (grep { !-d } @process_file)
} elsif (rename "$newdir/$get_files", "$newdir/$newfile") {
I'm not a win32 Perl user, but I'm not convinced using forward slashes will work here.
Also, I'm not sure what's the reasoning with the assignments from scalar to array and back to scalar again at the top of your code.
blokhead
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.