vote up 2 vote down star

I have a string containing the file system path to an existing symlink. I want to get the path that this link points to.

Basically I want the same that I'd get through this bit of hackery:

s = "path/to/existing/symlink"
`ls -ld #{s}`.scan(/-> (.+)/).flatten.last

but I want to do it without shelling out.

flag

67% accept rate
Do we have a tag for 'lazy'? – kch Aug 6 at 10:04

2 Answers

vote up 5 vote down check

I think readlink is what you are looking for:

File.readlink("path/to/symlink")
link|flag
Note that if the symlink is relative or there is a chain of symlinks, this will not follow all the links or return the full path -Pathname#realpath will. – mfazekas Sep 18 at 15:43
@mfazekas, thank you for pointing this out; I wonder whether that's really what the OP wanted though; ls -ld ... doesn't give the real path either. – Inshallah Sep 18 at 16:25
vote up 5 vote down
require 'pathname'
Pathname.new("symlink").realpath

or readlink as others said

link|flag
rather Pathname.new("/path/to/symlink").realpath.to_s :) .. this is definitely better than using system() – Rishav Rastogi Aug 6 at 9:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.