windows下如何通过文件名获取文件时间?
Windows 有 GetFileTime API,它允许获取文件时间打开文件句柄的信息。 我想知道的是,是否可以通过文件名获取此信息而无需显式打开文件。 如果可能的话是否也适用于Windows Mobile平台?
Windows has GetFileTime API which allows getting file time information by open file handle. What I wanted to know is, if it is possible to get this information by file name without opening the file explicitly. And if possible is it also applicable to Windows Mobile platform?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您使用 dwFileAccess 值为零调用 CreateFile,则它“指定对应用程序可以在不访问设备的情况下查询设备属性。”不知道为什么他们从新版本的文档中删除了真正信息丰富的文本,因为 FSD 中的实现仍然是相同的。
If you call CreateFile with a dwFileAccess value of zero, it "specifies device query access to the object. An application can query device attributes without accessing the device." No clue why they removed that really informative bit of text from newer versions of the documentation, as the implementation in the FSD is still the same.
一种可能是使用 FindFirstFile 如果您想要坚持使用 Windows API。 它也在 Windows CE 上可用
One possibility would be to use FindFirstFile if you want to stick with the Windows API. It is also available on Windows CE
GetFileTime 在所有版本的 Windows CE 上都可用。 如果 Win32 中没有有效的文件句柄,您不太可能找到实现此目的的方法。
GetFileTime is available on all versions of Windows CE. You're unlikely to find a way to accomplish this without a valid file handle in Win32.
关于在 WinCE 文件上使用文件时间的说明:
引用 WinCE 获取文件时间
我发现在我尝试过的所有设备上都是如此。
Just a note on using the file times on a WinCE file:
Quote from the MSDN docs on WinCE GetFileTime
I found this to be true on all devices I have tried.