Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Tie::Filesystem - request for review

by Aragorn (Curate)
on Jun 23, 2004 at 07:48 UTC ( #368964=note: print w/replies, xml ) Need Help??


in reply to Tie::Filesystem - request for review

To make it nice and portable, consider using File::Spec (or its functional sibling File::Spec::Functions. Using that, you don't have to have the DIR_SEP variable, as you can use catdir. For example:
my $pathname = $self->{'root'} . $DIR_SEP . $leaf;
becomes
my $pathname = catdir($self->{'root'}, $leaf);
Also
return -e ($self-{'root'} . $DIR_SEP . $leaf);
will probably not do what you expect. New testcase ;-)

Arjen

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://368964]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (3)
As of 2023-12-10 17:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    What's your preferred 'use VERSION' for new CPAN modules in 2023?











    Results (41 votes). Check out past polls.

    Notices?