tests/readlink.py
author Pierre-Yves David <pierre-yves.david@fb.com>
Wed, 08 Oct 2014 22:34:48 -0700
changeset 22848 72100c1d53d4
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
obsolete: gather _fm0 meta encoding with other _fm0 code

#!/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)