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

•Re: Crosslink

by merlyn (Sage)
on Feb 02, 2004 at 11:38 UTC ( [id://325831]=note: print w/replies, xml ) Need Help??


in reply to Crosslink

For symlinks, that won't work unless the sourcedir is absolute, or calculated properly relative to the destdir. I don't see a disclaimer there for that, so I imagine people will be using it naively in a broken way.

For example, the following won't work:

$ mkdir src dst $ touch src/foo $ ln -s src/foo dst/bar
It doesn't work because the kernel will be trying to find dst/src/foo when dst/bar is referenced. The symlink actually needs to be created non-intuitively as:
$ ln -s ../src/foo dst/bar
Perhaps if your code computed the proper relative path from an apparent relative path for symlinks, it'd be more useful.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

Replies are listed 'Best First'.
Re: •Re: Crosslink
by BrentDax (Hermit) on Feb 02, 2004 at 15:04 UTC
    D'oh! That's what I get for not testing that bit... *sighs*

    =cut
    --Brent Dax
    There is no sig.

      File::Spec's methods rel2abs() and abs2rel() are a convenient way to handle relative and absolute pathing. Also, why not use one of the Getopt::* modules instead of parsing the flags by hand? The performance might not be quite as good, but it does print a warning when someone types an unknown option.
      «Rich36»

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-04-19 12:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found