Copy Folder/File wiithout modifying attributes?(复制文件夹/文件而不修改属性?)
问题描述
是否可以将文件或文件夹从一个位置复制到另一个位置而不修改其属性数据?例如,如果我在网络驱动器上有一个文件夹,它是在 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.
这篇关于复制文件夹/文件而不修改属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:复制文件夹/文件而不修改属性?


- 如何用自己压缩一个 IEnumerable 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01