My dilemna is that I have a number of text files in a directory, say C:\Text_Files. They all follow the same naming convention, mlb_boxscore$124728.txt, mlb_boxscore$429722.txt, and so on. Right now, I have code written that sorts the file with the greatest numerical value. I am trying to move this file to another directory and rename it as soon as it gets there. So far, I can only get the sort to work and I am unable to move the file to the new directory, and am not sure how to rename files, so if there are any suggestions I would greatly appreaciate them. Below is what I have written out so far, it's weak to say the least.
my $base_dir = "C:/Text_Files";
my $new_dir = "D:/Test";
opendir (DIR, "C:/Text_Files") || die "Could not open data directory\n
+";
my ($top_file) = reverse sort readdir(DIR);
closedir (DIR);
use File::Copy;
move($base_dir.$top_file, $new_dir.$top_file);
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.