Copy permission, last modification time, last access time, and flags from src to dst.
(src, dest)
| 1442 | |
| 1443 | |
| 1444 | def copystat(src, dest): |
| 1445 | """Copy permission, last modification time, |
| 1446 | last access time, and flags from src to dst.""" |
| 1447 | import shutil |
| 1448 | |
| 1449 | shutil.copystat(str(src), str(dest)) |
| 1450 | |
| 1451 | |
| 1452 | def copychunked(src, dest): |
no outgoing calls
no test coverage detected
searching dependent graphs…