本文介绍了在Compact Framework的变更文件LastWriteDate的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
FileSystemInfo.LastWriteTime
属性是只读的CF.是否有其他方法来改变该日期?
FileSystemInfo.LastWriteTime
property is readonly in CF.Is there an alternative way to change that date?
推荐答案
P /调用的。
修改
沿着这些线路(警告:未经测试)的东西
Something along these lines (warning: untested)
[DllImport("coredll.dll")]
private static extern bool SetFileTime(string path,
ref long creationTime,
ref long lastAccessTime,
ref long lastWriteTime);
public void SetFileTimes(string path, DateTime time)
{
var ft = time.ToFileTime();
SetFileTime(path, ref ft, ref ft, ref ft);
}
这篇关于在Compact Framework的变更文件LastWriteDate的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!