##// END OF EJS Templates
vfs: add listdir for os.listdir in vfs...
Chinmay Joshi -
r21799:dfacdd6a default
parent child Browse files
Show More
@@ -184,6 +184,9 b' class abstractvfs(object):'
184 def lstat(self, path=None):
184 def lstat(self, path=None):
185 return os.lstat(self.join(path))
185 return os.lstat(self.join(path))
186
186
187 def listdir(self, path=None):
188 return os.listdir(self.join(path))
189
187 def makedir(self, path=None, notindexed=True):
190 def makedir(self, path=None, notindexed=True):
188 return util.makedir(self.join(path), notindexed)
191 return util.makedir(self.join(path), notindexed)
189
192
General Comments 0
You need to be logged in to leave comments. Login now