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.
这篇关于复制文件夹/文件而不修改属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:复制文件夹/文件而不修改属性?


基础教程推荐
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30