Creates a new file at path.
(self, path)
| 19 | self.__data = file(path, 'rb', 0).read() |
| 20 | |
| 21 | def paste(self, path): |
| 22 | 'Creates a new file at path.' |
| 23 | file(os.path.join(path, self.__name), 'wb', 0).write(self.__data) |
| 24 | |
| 25 | class Directory: |
| 26 |
no test coverage detected