tests/readlink.py
author timeless <timeless@mozdev.org>
Wed, 02 Mar 2016 21:50:35 +0000
changeset 28417 588874c33b4d
parent 25660 328739ea70c3
child 29175 7bcfb9090c86
permissions -rwxr-xr-x
win32mbcs: use absolute_import

#!/usr/bin/env python

import errno, os, sys

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

sys.exit(0)