Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

2 Answers

up vote 36 down vote accepted

I think readlink is what you are looking for:

File.readlink("path/to/symlink")
share|improve this answer
7  
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 '09 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 '09 at 16:25
require 'pathname'
Pathname.new("symlink").realpath

or readlink as others said

share|improve this answer
2  
rather Pathname.new("/path/to/symlink").realpath.to_s :) .. this is definitely better than using system() – Rishav Rastogi Aug 6 '09 at 9:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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