- or download this
$File::Find::prune = 1, return
if $File::Find::name =~ m{^.:/System Volume Information$};
- or download this
use File::Find;
my @drives = ( 'c:/', 'd:/' );
...
}, @drives );
End_F:
print "Extra files or directories checked by this method: $extras\n";
- or download this
#!/usr/bin/perl -w
use strict;
...
print "$_\n";
}
}, @drives );