Keeping file attributes on a copy

拥有回忆 提交于 2019-12-03 18:01:31

问题


I have the situation whereby I want to keep the original attributes on a file (the file creation date etc). Normally when you copy files in Windows, the copy that you make gets new 'modified' dates etc. I have come accross the shutil.copy command — although this doesn't keep the file attributes the same.

I found the following question on Stack Unix, but I was wondering if there was a way for me to do this in Python.


回答1:


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.



来源:https://stackoverflow.com/questions/17685217/keeping-file-attributes-on-a-copy

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!