equal
deleted
inserted
replaced
251 def isdir(self, path=None): |
251 def isdir(self, path=None): |
252 return os.path.isdir(self.join(path)) |
252 return os.path.isdir(self.join(path)) |
253 |
253 |
254 def islink(self, path=None): |
254 def islink(self, path=None): |
255 return os.path.islink(self.join(path)) |
255 return os.path.islink(self.join(path)) |
|
256 |
|
257 def lstat(self, path=None): |
|
258 return os.lstat(self.join(path)) |
256 |
259 |
257 def makedir(self, path=None, notindexed=True): |
260 def makedir(self, path=None, notindexed=True): |
258 return util.makedir(self.join(path), notindexed) |
261 return util.makedir(self.join(path), notindexed) |
259 |
262 |
260 def makedirs(self, path=None, mode=None): |
263 def makedirs(self, path=None, mode=None): |