summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorConrad E. Kimball <cek@tblv021.ca.boeing.com>1997-11-25 15:03:48 -0800
committerGurusamy Sarathy <gsar@cpan.org>1998-03-02 03:39:16 +0000
commit237437d07d681a15aa201e3d0d2212821b816c3c (patch)
treed4e6cfbaf061e8941d54e1ffa9cd0ef3693f6a48 /lib
parent161b7d1635bc830b9c733355ab423626eadf9ae9 (diff)
downloadperl-237437d07d681a15aa201e3d0d2212821b816c3c.tar.gz
[win32] another one down
Message-Id: <199711260703.XAA21257@mailgate2.boeing.com> Subject: [PERL] File::Find bugs & patches p4raw-id: //depot/win32/perl@615
Diffstat (limited to 'lib')
-rw-r--r--lib/File/Find.pm72
1 files changed, 43 insertions, 29 deletions
diff --git a/lib/File/Find.pm b/lib/File/Find.pm
index 11835067ff..0fb7411871 100644
--- a/lib/File/Find.pm
+++ b/lib/File/Find.pm
@@ -17,7 +17,7 @@ finddepth - traverse a directory structure depth-first
use File::Find;
find(\&wanted, '/foo','/bar');
sub wanted { ... }
-
+
use File::Find;
finddepth(\&wanted, '/foo','/bar');
sub wanted { ... }
@@ -34,7 +34,7 @@ prune the tree.
File::Find assumes that you don't alter the $_ variable. If you do then
make sure you return it to its original value before exiting your function.
-This library is primarily for the C<find2perl> tool, which when fed,
+This library is primarily for the C<find2perl> tool, which when fed,
find2perl / -name .nfs\* -mtime +7 \
-exec rm -f {} \; -o -fstype nfs -prune
@@ -63,7 +63,7 @@ that don't resolve:
sub wanted {
-l && !-e && print "bogus link: $File::Find::name\n";
- }
+ }
=head1 BUGS
@@ -91,12 +91,11 @@ sub find {
$name = $topdir;
$prune = 0;
&$wanted;
- if (!$prune) {
- my $fixtopdir = $topdir;
- $fixtopdir =~ s,/$,, ;
- $fixtopdir =~ s/\.dir$// if $Is_VMS;
- &finddir($wanted,$fixtopdir,$topnlink);
- }
+ next if $prune;
+ my $fixtopdir = $topdir;
+ $fixtopdir =~ s,/$,, ;
+ $fixtopdir =~ s/\.dir$// if $Is_VMS;
+ &finddir($wanted,$fixtopdir,$topnlink);
}
else {
warn "Can't cd to $topdir: $!\n";
@@ -106,8 +105,13 @@ sub find {
unless (($_,$dir) = File::Basename::fileparse($topdir)) {
($dir,$_) = ('.', $topdir);
}
- $name = $topdir;
- chdir $dir && &$wanted;
+ if (chdir($dir)) {
+ $name = $topdir;
+ &$wanted;
+ }
+ else {
+ warn "Can't cd to $dir: $!\n";
+ }
}
chdir $cwd;
}
@@ -134,7 +138,7 @@ sub finddir {
&$wanted;
}
}
- else { # This dir has subdirectories.
+ else { # This dir has subdirectories.
$subcount = $nlink - 2;
for (@filenames) {
next if $_ eq '.';
@@ -148,17 +152,21 @@ sub finddir {
($dev,$ino,$mode,$nlink) = ($Is_VMS ? stat($_) : lstat($_));
# unless ($nlink || $dont_use_nlink);
-
+
if (-d _) {
# It really is a directory, so do it recursively.
- if (!$prune && chdir $_) {
+ --$subcount;
+ next if $prune;
+ if (chdir $_) {
$name =~ s/\.dir$// if $Is_VMS;
&finddir($wanted,$name,$nlink);
chdir '..';
}
- --$subcount;
+ else {
+ warn "Can't cd to $_: $!\n";
+ }
}
}
}
@@ -168,12 +176,10 @@ sub finddir {
sub finddepth {
my $wanted = shift;
-
- $cwd = Cwd::fastcwd();;
-
+ my $cwd = Cwd::cwd();
# Localize these rather than lexicalizing them for backwards
# compatibility.
- local($topdir, $topdev, $topino, $topmode, $topnlink);
+ local($topdir,$topdev,$topino,$topmode,$topnlink);
foreach $topdir (@_) {
(($topdev,$topino,$topmode,$topnlink) =
($Is_VMS ? stat($topdir) : lstat($topdir)))
@@ -184,8 +190,8 @@ sub finddepth {
$fixtopdir =~ s,/$,, ;
$fixtopdir =~ s/\.dir$// if $Is_VMS;
&finddepthdir($wanted,$fixtopdir,$topnlink);
- ($dir,$_) = ($fixtopdir,'.');
- $name = $fixtopdir;
+ ($dir,$_) = ($topdir,'.');
+ $name = $topdir;
&$wanted;
}
else {
@@ -196,8 +202,13 @@ sub finddepth {
unless (($_,$dir) = File::Basename::fileparse($topdir)) {
($dir,$_) = ('.', $topdir);
}
- $name = $topdir;
- chdir $dir && &$wanted;
+ if (chdir($dir)) {
+ $name = $topdir;
+ &$wanted;
+ }
+ else {
+ warn "Can't cd to $dir: $!\n";
+ }
}
chdir $cwd;
}
@@ -206,15 +217,15 @@ sub finddepth {
sub finddepthdir {
my($wanted, $nlink);
local($dir, $name);
- ($wanted,$dir,$nlink) = @_;
+ ($wanted, $dir, $nlink) = @_;
my($dev, $ino, $mode, $subcount);
# Get the list of files in the current directory.
- opendir(DIR,'.') || warn "Can't open $dir: $!\n";
+ opendir(DIR,'.') || (warn "Can't open $dir: $!\n", return);
my(@filenames) = readdir(DIR);
closedir(DIR);
- if ($nlink == 2 && !$dont_use_nlink) { # This dir has no subdirectories.
+ if ($nlink == 2 && !$dont_use_nlink) { # This dir has no subdirectories.
for (@filenames) {
next if $_ eq '.';
next if $_ eq '..';
@@ -223,7 +234,7 @@ sub finddepthdir {
&$wanted;
}
}
- else { # This dir has subdirectories.
+ else { # This dir has subdirectories.
$subcount = $nlink - 2;
for (@filenames) {
next if $_ eq '.';
@@ -235,17 +246,20 @@ sub finddepthdir {
# Get link count and check for directoriness.
($dev,$ino,$mode,$nlink) = ($Is_VMS ? stat($_) : lstat($_));
-
+
if (-d _) {
# It really is a directory, so do it recursively.
+ --$subcount;
if (chdir $_) {
$name =~ s/\.dir$// if $Is_VMS;
&finddepthdir($wanted,$name,$nlink);
chdir '..';
}
- --$subcount;
+ else {
+ warn "Can't cd to $_: $!\n";
+ }
}
}
&$wanted;