以编程方式确定 UNC 路径中的可用空间
是否有用于从 UNC 路径确定 NAS 存储上的可用空间的编程 API?我查看了 WMI 文档,并不清楚这是否可行。
如果有代码示例和相关 API 调用的参考,我们将不胜感激。
Is there a programmatic API for determining available space on NAS storage from a UNC path? I looked through the WMI documentation and it wasn't clear that this is possible.
A code example and references to the relevant API calls would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在Windows API中, GetFreeDiskSpaceEx 似乎是要使用的方法,适用于UNC根据 MSDN 文档的路径。
In the windows API, GetFreeDiskSpaceEx seems to be the method to use, which works on UNC paths according to the MSDN docs.
使用此示例了解如何获取 UNC 路径,您可以只返回 FreeSpace 属性,我修改了下面的代码:
Using this example on how to get the UNC path, you could just return the FreeSpace property, I've modified the code below: