Show More
@@ -178,6 +178,9 b' class abstractvfs(object):' | |||
|
178 | 178 | def islink(self, path=None): |
|
179 | 179 | return os.path.islink(self.join(path)) |
|
180 | 180 | |
|
181 | def lexists(self, path=None): | |
|
182 | return os.path.lexists(self.join(path)) | |
|
183 | ||
|
181 | 184 | def lstat(self, path=None): |
|
182 | 185 | return os.lstat(self.join(path)) |
|
183 | 186 |
General Comments 0
You need to be logged in to leave comments.
Login now