在我的本地文件夹中,我有一个文件sample.txt
。
右键单击->属性->详细信息
我可以看到它的修改日期。例如,2018年10月30日09:00。
我可以通过UWP更改此属性吗?以20.10.2018 09:00为例。
答案 0 :(得分:3)
是的,您可以通过以下方式
string path = @"c:\sample.txt";
// Take an action that will affect the write time.
File.SetLastWriteTime(path, new DateTime(1985,4,3));