List the contents of the specified path. Return a 2-tuple of lists: the first item being directories, the second item being files.
(self, path)
| 157 | ) |
| 158 | |
| 159 | def listdir(self, path): |
| 160 | """ |
| 161 | List the contents of the specified path. Return a 2-tuple of lists: |
| 162 | the first item being directories, the second item being files. |
| 163 | """ |
| 164 | raise NotImplementedError( |
| 165 | "subclasses of Storage must provide a listdir() method" |
| 166 | ) |
| 167 | |
| 168 | def size(self, name): |
| 169 | """ |
no outgoing calls
no test coverage detected