查找文件大小 Windows MFC 应用程序

发布于 2024-08-12 03:39:57 字数 117 浏览 1 评论 0原文

我正在开发 Windows MFC 应用程序。我正在设计中准备一份报告列表 使用 CListCtrl 我可以列出文件的名称、大小、类型和修改日期。我不知道如何显示文件的大小。有人知道该怎么做吗?

I am working on a Windows MFC application. I am preparing a report list in my design
using CListCtrl were I can list the name, size, type and modified date of the file. I do not know how to display the size of a file. Do any one know how to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

花开浅夏 2024-08-19 03:39:57

要一次性获取所有信息,请使用:

CFileStatus filestatus;
CFile::GetStatus( filename, filestatus );

To get all your info in one shot, use:

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