def isdir(self): try: with self('r'): return stat.S_ISDIR(self.stat().st_mode) except IOError: return False