SparceMatrix
Technical User
I want to be able to negotiate directories, this is fundamental to the text processing script that I am trying to write. I am finding that when I run a script from anywhere but the directory that I am trying to list, I cannot test the results of "readdir" for the presence of a directory (-d). I might be able to work around it by changing to the directory, but since I want to be able to list subdirectories as well, this will not work in the end.
If I call this script from any directory but "C:\My Directory\My Other Directory\My Target Directory", then output.txt is empty except for "." and "..". It would appear that the file test is failing for any File Test Operator I try. Sometimes files show up, but not consistantly enough to suggest a reason.
Does anybody have any idea why these tests fail like this? What can I do to loop through directories and subdirectories with PERL in Windows?
Code:
#!/usr/bin/perl
use strict;
use warnings;
my $dir = 'C:\My Directory\My Other Directory\My Target Directory';
my $txt = 'output.txt';
opendir(DIR, $dir) || die "can't opendir $dir: $!";
my @files = readdir(DIR);
open ( my $fh_output, '>', $txt) or die $!;
foreach my $file ( @files ) {
if (-e $file) { print $fh_output $file , "\n"; }
}
closedir DIR;
close ( $fh_output );
If I call this script from any directory but "C:\My Directory\My Other Directory\My Target Directory", then output.txt is empty except for "." and "..". It would appear that the file test is failing for any File Test Operator I try. Sometimes files show up, but not consistantly enough to suggest a reason.
Does anybody have any idea why these tests fail like this? What can I do to loop through directories and subdirectories with PERL in Windows?