问题描述
是否可以将文件或文件夹从一个位置复制到另一个位置而不修改其属性数据?例如,如果我在网络驱动器上有一个文件夹,它是在 2007 年 2 月 3 日创建的,我想将它复制到我的 c: 驱动器 .. 但将日期/时间戳保留为 2007 年 2 月 3 日...那可能吗?
Is it possible to copy a file or a folder from one location to another without modifying its attribute data? For example if I have a folder on a network drive and it was created on 2/3/2007 and I want to copy it to my c: drive .. but leave the date/time stamp as 2/3/2007...is that possible?
推荐答案
我不确定是否可以;但是您可以使用 System.IO.File 中的方法 和 System.IO.Directory 将这些属性重置回原来的状态.
I'm not sure if it is possible; however you can use the methods within System.IO.File and System.IO.Directory to reset these attributes back to what they were originally.
在这种情况下,特别是 SetCreationTime 和 SetModificationTime 方法对您最有价值.
Specifically the SetCreationTime and SetModificationTime methods will be of most value to you in this case.
这篇关于复制文件夹/文件而不修改属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!