Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
199 views

How do you determine the path of the file that a symlink points to?

In Linux, if you have a path to a file which you know is a symlink, how do you programmatically determine (in C or C++) the path to the file that it points to?
3
votes
1answer
523 views

How to have Git 1.6 follow “beyond symlinks”

Apparently, the bug where git follows and track files beyond symlinks (git add symlink/) has been fixed around v1.6. Now this was a bug that works in my favor. Now that we've upgraded to v1.6.3.3, is ...
2
votes
2answers
86 views

“tracing” version of readlink(1)

I would like a version of "readlink -f" that provides a trace of every individual symlink resolution it performs. Something like: $ linktrace /usr/lib64/sendmail /usr/lib64 -> lib ...
2
votes
1answer
186 views

Are there any problems with this symlink traversal code for Windows?

In my efforts to resolve Python issue 1578269, I've been working on trying to resolve the target of a symlink in a robust way. I started by using GetFinalPathNameByHandle as recommended here on ...
0
votes
1answer
671 views

Python os.walk + follow symlinks

How do I get this piece to follow symlinks in python 2.6? def load_recursive(self, path): for subdir, dirs, files in os.walk(path): for file in files: if ...
0
votes
2answers
232 views

Is there a way in PHP to check if a directory is a symlink?

The title says it all. I have symlinks to certain directories because the directories' names have non English characters that I got fed up trying to get apache's rewrite rules to match. There's a ...