Find broken symlinks with Python

后端 未结 8 1464
广开言路
广开言路 2020-12-15 05:17

If I call os.stat() on a broken symlink, python throws an OSError exception. This makes it useful for finding them. However, there are

8条回答
  •  悲&欢浪女
    2020-12-15 05:34

    A common Python saying is that it's easier to ask forgiveness than permission. While I'm not a fan of this statement in real life, it does apply in a lot of cases. Usually you want to avoid code that chains two system calls on the same file, because you never know what will happen to the file in between your two calls in your code.

    A typical mistake is to write something like:

    if os.path.exists(path):
        os.unlink(path)
    

    The second call (os.unlink) may fail if something else deleted it after your if test, raise an Exception, and stop the rest of your function from executing. (You might think this doesn't happen in real life, but we just fished another bug like that out of our codebase last week - and it was the kind of bug that left a few programmers scratching their head and claiming 'Heisenbug' for the last few months)

    So, in your particular case, I would probably do:

    try:
        os.stat(path)
    except OSError, e:
        if e.errno == errno.ENOENT:
            print 'path %s does not exist or is a broken symlink' % path
        else:
            raise e
    

    The annoyance here is that stat returns the same error code for a symlink that just isn't there and a broken symlink.

    So, I guess you have no choice than to break the atomicity, and do something like

    if not os.path.exists(os.readlink(path)):
        print 'path %s is a broken symlink' % path
    

提交回复
热议问题