Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Tie::Filesystem - request for review

by Aragorn (Curate)
on Jun 23, 2004 at 07:48 UTC ( [id://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 taking refuge in the Monastery: (7)
As of 2024-04-19 09:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found