tests/readlink.py
author Greg Ward <greg@gerg.ca>
Thu, 20 Oct 2011 22:14:11 -0400
branchstable
changeset 15328 9b4ab5f7ad2a
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
largefiles: polish comments in test script

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