Hi All,
Am trying to print just directory and sub-directories names from the mentioned path. script reads directories recursively but it prints fullpath.
I don't know how print just directory names or stored them in a array.
Thanks for reading the post.
Any help would be very greatful.
Main script :
#! /usr/bin/perl
use strict;
use warnings;
my $base_dir = 'C:\Input';
my @to_visit = $base_dir;
while (@to_visit) {
my $dir = pop(@to_visit);
opendir(my $dh, $dir);
my $file;
while(defined($file = readdir($dh))) {
next if $file eq '.';
next if $file eq '..';
$file = "$dir/$file";
if (-d $file) {
push(@to_visit, $file);
print $file;
print "\n";
} else {
}
}
}
output now getting is :
C:Input/INT
C:\Input/INT/CAD
C:\Input/INT/CAD/MH
C:\Input/INT/CAD/MH/COi
C:\Input/INT/CAD/MH/Dit
C:\Input/INT/CAD/MH/WMp
In the above output, i don't want to print/save last blank line.
expecting output to be stored in some array:
INT
CAD
MH
COi
Dit
WMp
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|