If you look at the documentation for shutil
, you'll immediately find the copy2
function, which is:
Identical to copy()
except that copy2()
also attempts to preserve all file metadata.
In recent versions of Python, there's a whole slew of functions to do bits and pieces of this separately—copy
, copymode
, copystat
—but if you just want to copy everything, copy2
does everything possible.
As the warning at the top of the documentation says, "everything possible" doesn't mean everything, but it does include the dates and other attributes. In particular:
On Windows, file owners, ACLs and alternate data streams are not copied.
If you really need to include even that stuff, you will need to access the Win32 API (which is easiest to do via pywin32). But you don't.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…