GetLogicalDriveStrings,为什么是字符串列表
我是否正确理解该函数返回驱动器号? 如果是,那么为什么 GetLogicalDriveStrings 给出一系列以 null 结尾的字符串而不是一系列字符?
Do I understand correctly that this function returns drive letters?
If yes, then why does GetLogicalDriveStrings gives series of null-terminated strings and not series of chars?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为它返回的字符串可用作 GetDriveType 等函数的输入,这些函数要求输入采用“c:”形式,而不仅仅是“c”。
Because it returns strings that can be used as input to functions like GetDriveType which require the input to be in the form "c:" not just 'c'.