gpt4 book ai didi

c# - Environment.GetFolderPath(Environment.SpecialFolder.SOMETHING)

转载 作者:行者123 更新时间:2023-11-30 13:32:19 29 4
gpt4 key购买 nike

我一直在尝试大部分 Enviroment.SpecialFolder 枚举,但我认为没有任何方法可以通过枚举。使用 string.Substring() 方法给我带来了最大的收获。

我尝试只获取实际安装 Windows 的系统分区路径。在机器 A 上它可能是 C:\,在机器 B 上它可能是 D:\

到目前为止,我找到的最充分的解决方案是

var path = Environment.GetFolderPath(Environment.SpecialFolder.Windows)
.Substring(0, 3);

有更好的方法吗?谢谢。

最佳答案

要获取驱动器,请使用 Path.GetPathRoot。参见 http://msdn.microsoft.com/en-us/library/system.io.path.getpathroot.aspx

var root = Path.GetPathRoot(Environment.GetFolderPath(Environment.SpecialFolder.Windows));

关于c# - Environment.GetFolderPath(Environment.SpecialFolder.SOMETHING),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14713658/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com