Mirror remote file system to local directory: mirror
(self, arg)
| 210 | |
| 211 | # ------------------------[ mirror <path> ]--------------------------- |
| 212 | def do_mirror(self, arg): |
| 213 | "Mirror remote file system to local directory: mirror <remote path>" |
| 214 | for name in self.dirlist(arg): |
| 215 | self.mirror(name, True) |
| 216 | |
| 217 | # ==================================================================== |
| 218 |