Steves I hope you are there!
I complety understand what are you saying? I have added shift to @directory but it only copies one file???? so you are right!! how could I recode this script so it looks at every directory contain within the array. Any suggestions??? I'll appreciate your help.
#! perl -w
use strict;
use File::Find;
use File::Copy;
my $infile = 'c:/doclist1.chr';
# my $outfile = 'c:/doclist1.txt';
open IN, "<$infile" or die "Couldn't open $infile, $!";
# open OUT, ">$outfile" or die "Couldn't open $outfile, $!";
while(<IN>) {
chomp;
my @fields = split /,/;
my $path_str = $fields[6];
do { warn "Empty field 7"; next } unless $path_str;
my @path = split /\\/, $path_str;
# assuming you want to remove a few directories
my @directory = join "\\", @path[0,5,6];
my $srcfile;
my $dir = shift @directory;
sub process_file
{
if ($File::Find::dir ne $dir)
{
$File::Find::prune = 1;
return 0;
}
return 0 if ($_ !~ /\.rtf$/);
copy($File::Find::name, "C:\\testfiles\\$_") or die "Failed to cop
+y $_: $!\n";
return 1;
}
find(\&process_file, $dir);
# print OUT "\n@directory";
}
exit;
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.