返回Windows安装的驱动器的函数?

发布于 2024-08-21 10:53:43 字数 183 浏览 8 评论 0原文

我想知道返回安装 Windows 的驱动器的函数。 例如 如果我们在 Windows 中运行一个包含以下代码的程序,该程序安装在“C:\”中 temp_char = getWindowsInstalledDrive();

应返回“C:\”。

如果您知道,请指出该功能。它应该是一个 C/C++ 函数。 谢谢。

i would like to know the function which returns the drive where the windows has been installed.
for example
if we run a program with following code in windows which is installed in "C:\"
temp_char = getWindowsInstalledDrive();

should return "C:\".

please point me to that function if you know. it should be a C/C++ function.
Thanks.

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

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

发布评论

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

评论(2

金橙橙 2024-08-28 10:53:43

您可以使用 GetSystemDirectory(): http://msdn .microsoft.com/en-us/library/ms724373%28VS.85%29.aspx,然后取前 3 个字母。

You can use GetSystemDirectory(): http://msdn.microsoft.com/en-us/library/ms724373%28VS.85%29.aspx and then take the first 3 letters.

羅雙樹 2024-08-28 10:53:43

使用 GetWindowsDirectory,然后提取驱动器从前三个字符开始。此功能在帮助中被描述为“旧版”,但应该适用于所有现有的 Windows 版本。

Use GetWindowsDirectory, and then extract the drive from the first three characters. This function is described as "legacy" in the help, but should work on all existing Windows versions.

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