Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In python, is there a function to check if a given file/directory is a symlink ? For example, for the below files, my wrapper function should return True.

# ls -l
total 0
lrwxrwxrwx 1 root root 8 2012-06-16 18:58 dir -> ../temp/
lrwxrwxrwx 1 root root 6 2012-06-16 18:55 link -> ../log
share|improve this question
5  
Literally copying and pasting your question title into google gives a page of results pointing to os.path.islink(). You clearly didn't even attempt to look this up. – Lattyware Jun 17 '12 at 2:10
2  
Actually, copying and pasting that question into google now yields this question. – porgarmingduod Mar 9 at 12:44

1 Answer

up vote 16 down vote accepted

To determine if a directory entry is a symlink use this:

os.path.islink(path)

Return True if path refers to a directory entry that is a symbolic link. Always False if symbolic links are not supported.

For instance, given:

drwxr-xr-x   2 root root  4096 2011-11-10 08:14 bin/
drwxrwxrwx   1 root root    57 2011-07-10 05:11 initrd.img -> boot/initrd.img-2..

>>> import os.path
>>> os.path.islink('initrd.img')
True
>>> os.path.islink('bin')
False
share|improve this answer

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.