I guess I should have been MORE informative about my OS.
Here's what I have. I have windoze 2003 ent and the hard drive is partitioned C:\ and T:\temp. I run Perl on both a 32bit and 64bit windoze servers.
Now back to the problem at hand. Run this code if you have your hard drive partitioned and you will see it fail then get back with me with suggestions.
#!/usr/bin/perl -w
use strict;
use File::Find;
use File::stat;
my $path = "T:\\";
find (\&wanted, $path);
sub wanted {
my $days = 10;
my $stat = stat($_);
# Access and Modified dates older then X days and not root
if (-A $_ > $days && -M $_ > $days && !(/^\./) ){
# With a temp partition T:\ there are system files that can't
+be deleted
if (!($_ =~ /^ntldr.*|nprotect.*|ntdetect.*|System.*|VIRTPART.
+*|.ini/i)) {
printf "access date %s modify date %s File is %s\n", scala
+r localtime $stat->atime, scalar localtime $stat->mtime, $_;
# unlink($_);
}
}
}
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.