(self, path)
| 55 | |
| 56 | # List Directory Contents |
| 57 | def listdir(self, path): |
| 58 | path = self.__resolve_path(path) |
| 59 | assert self.__disk.is_directory(path) |
| 60 | return self.__disk.list_directory(path) |
| 61 | |
| 62 | # Make New Directory |
| 63 | def mkdir(self, path): |
no test coverage detected