So I am writing a script to do some directory work, but keep ending up with an empty array when I try and print out the directory's contents:
my $base_directory = $ARGV[0];
opendir(B_DIR, "$base_directory") or die "Could not open base director
+y $base_directory: $!\n";
my @client_directories = grep { $_ ne '.' and $_ ne '..' } readdir B_D
+IR;
close B_DIR;
foreach my $client (@client_directories)
{
open(C_DIR, "$base_directory$client") or die "Could not open clien
+t directory $base_directory/$client: $!\n";
my @config_directories = grep { $_ ne '.' and $_ ne '..' } readdir
+ C_DIR;
close C_DIR;
print "@config_directories\n";
I am sure I am missing something amazingly simple (and yes, the directories do have files and such in them, they are not empty), but I am just not finding anything in @config_directories.
Any help is greatly appreciated!
-Shane
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.