ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/Utilities/AddDir.pm
(Generate patch)

Comparing COMP/SCRAM/src/Utilities/AddDir.pm (file contents):
Revision 1.5 by williamc, Fri Dec 1 14:51:01 2000 UTC vs.
Revision 1.6 by sashby, Fri May 11 08:49:52 2001 UTC

# Line 28 | Line 28 | sub adddir {
28   chdir $startdir;
29   }
30  
31 < sub copydir {
32 <        my $src=shift;
33 <        my $dest=shift;
34 <        
35 <        use DirHandle;
36 <        use File::Copy;
37 <
38 <        # print "Copying $src to $dest\n";
39 <        adddir($dest);
40 <        my $dh=DirHandle->new($src);
41 <        if (defined $dh) {
42 <        my @allfiles=$dh->read();
43 <        
44 <        my $file;
45 <        foreach $file ( @allfiles ) {
31 > sub copydir
32 >   {
33 >   my $src=shift;
34 >   my $dest=shift;
35 >  
36 >   use DirHandle;
37 >   use File::Copy;
38 >  
39 >   # print "Copying $src to $dest\n";
40 >   adddir($dest);
41 >   my $dh=DirHandle->new($src);
42 >  
43 >   if (defined $dh)
44 >      {
45 >      my @allfiles=$dh->read();
46 >  
47 >      my $file;
48 >      foreach $file ( @allfiles )
49 >         {
50           next if $file=~/^\.\.?/;
51 <         if ( -d $src."/".$file ) {
52 <           copydir($src."/".$file,$dest."/".$file);
53 <         }
54 <         else {
55 <           copy($src."/".$file,$dest."/".$file)
51 >         if ( -d $src."/".$file )
52 >            {
53 >            copydir($src."/".$file,$dest."/".$file);
54 >            }
55 >         else
56 >            {
57 >            copy($src."/".$file,$dest."/".$file);
58 >            }
59           }
60 <        }
61 <        undef $dh;
62 <        }
63 < }
60 >      undef $dh;
61 >      }
62 >   else
63 >      {
64 >      die "Attempt to open a non-existent directory ($src). Exitting\n";
65 >      }
66 >   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines