Hi,
I'd like a script to look for a config file first in the current directory then in the parent directory until the root directory and if no config file was found in the home directory. This does not look difficult,
unless you want the code to run under different Operating Systems and settings. For instance
/ is not always the directory separator and the root directory. Here is the current code:
use File::Spec::Functions;
use File::Basename;
use Cwd;
sub find_config {
my $path = cwd;
while ($path) {
my $file = catfile($path,'my.conf');
return $file if -e $file;
last if $path eq dirname($path);
$path = dirname($path);
}
my ($login) = getpwuid($<);
my $file = catdir('/home',$login,'my.conf');
return -e $file ? $file : '';
}
I was wondering whether there already is a reliable implementation in some CPAN module, that also deals with all these different file systems. I bet my code fails under some unknown special circumstances...
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.