Creates a new directory at path.
(self, path)
| 38 | self.__data.append(File(path_name)) |
| 39 | |
| 40 | def paste(self, path): |
| 41 | 'Creates a new directory at path.' |
| 42 | if self.__name: |
| 43 | path = os.path.join(path, self.__name) |
| 44 | os.mkdir(path) |
| 45 | for item in self.__data: |
| 46 | item.paste(path) |
| 47 | |
| 48 | ################################################################################ |
| 49 |