windows下如何通过文件名获取文件时间?

发布于 2024-07-10 18:53:06 字数 217 浏览 6 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

云仙小弟 2024-07-17 18:53:06

如果您使用 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.

冷弦 2024-07-17 18:53:06

一种可能是使用 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

夏九 2024-07-17 18:53:06

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.

波浪屿的海角声 2024-07-17 18:53:06

关于在 WinCE 文件上使用文件时间的说明:

引用 WinCE 获取文件时间

Windows CE 对象存储返回
三人的时间相同
参数。 一般来说,文件系统
驱动程序的支持方式会有所不同
这个功能。

我发现在我尝试过的所有设备上都是如此。

Just a note on using the file times on a WinCE file:

Quote from the MSDN docs on WinCE GetFileTime

The Windows CE object store returns
the same time for all three
parameters. In general, file system
drivers will vary how they support
this function.

I found this to be true on all devices I have tried.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文