驱动器上剩余的可用空间 - WinAPI - Windows CE
我忘记了 WinAPI 调用来查明特定驱动器上剩余的空间,并且 pinvoke.net 没有给我任何帮助。 顺便说一下,它是一个紧凑的框架,所以我认为 coredll.dll 。
记忆力好一点的人可以慢跑吗?
I've forgotten the WinAPI call to find out how much space is remaining on a particular drive and pinvoke.net isn't giving me any love.
It's compact framework by the way, so I figure coredll.dll.
Can anyone with a better memory jog mine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GetDiskFreeSpaceEx。 链接到 pinvoke.net 的桌面页面; 只需将
kernel32
替换为coredll
即可。不幸的是,Compact Framework 上不存在 System.IO.DriveInfo。 它不太适合 Windows CE 的 Unix 风格的单根树。
GetDiskFreeSpaceEx. That links to pinvoke.net's desktop page; simply replace
kernel32
withcoredll
.Unfortunately
System.IO.DriveInfo
is not present on Compact Framework. It doesn't quite fit with Windows CE's Unix-style singly-rooted tree.