计算可用磁盘空间

发布于 2024-09-01 17:28:59 字数 66 浏览 7 评论 0原文

仅使用 C++ 计算可用磁盘空间的最佳方法是什么?我的目标平台是WinCE,但大部分文件操作与普通Windows相同。

What is the best method for calculating free disk space using C++ only. My target platform is WinCE but most of the file operations are the same as normal Windows.

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

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

发布评论

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

评论(2

初心 2024-09-08 17:28:59

你的意思是使用情况,即剩余空间有多少?然后尝试 GetDiskFreeSpace()
或者您的意思是读/写/当前打开文件的数量、速度等?

You mean usage as in how much space is left? then try GetDiskFreeSpace()
Or do you mean, number of reads/writes/current files open, speed etc?

信愁 2024-09-08 17:28:59

打开商店 + 获取商店信息。 STOREINFO 为您提供已使用的大小,BytesPerSector * (NumSectors - FreeSectors)。

OpenStore + GetStoreInfo. STOREINFO gets you the used size, BytesPerSector * (NumSectors - FreeSectors).

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