tests/readlink.py
author Javi Merino <cibervicho@gmail.com>
Tue, 01 Feb 2011 07:29:11 +0000
branchstable
changeset 13330 551856dea9a6
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
win32mbcs: Fix typo in documentation extention -> extension

#!/usr/bin/env python

import errno, os, sys

for f in sys.argv[1:]:
    try:
        print f, '->', os.readlink(f)
    except OSError, err:
        if err.errno != errno.EINVAL:
            raise
        print f, 'not a symlink'

sys.exit(0)