vote up 0 vote down star

Hello,

Using PHP on Linux, I can just use the is_link() function to detect whether a given file is a symbolic link. However, is there a way to detect if a given file is the target of any other symbolic links?

Thanks, Brian

flag

I don't think so, no. I'm not sure it's something the O/S tracks. – Dominic Rodger Oct 12 at 5:32
Thanks - I'm looking to ensure that moving/deleting a file won't break a symlink. Any solutions to this besides just being really careful? – Brian Oct 12 at 5:36

1 Answer

vote up 3 vote down check

No.

And this is not even possible with ordinary links.

Periodically, a Unix-like-OS (and for that matter, a Windows version) ships with cron setup to keep a database of files in order to speed up searching. Such a database certainly could map files and links in both directions but it would not necessarily give currently accurate results.

link|flag
Thanks very much – Brian Oct 12 at 5:44
I should add that with ordinary non-symbolic links it is easily possible to know how many links the file has, but not where those links are. With symbolic links, it is not even known how many there are. – DigitalRoss Oct 12 at 5:48
After all, there may be symlinks in paths that you don't have permission to see - or even on volumes that aren't currently mounted. – caf Oct 12 at 7:15

Your Answer

Get an OpenID
or

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