gpt4 book ai didi

c# - Directory.Exists 在 Program Files 中的文件夹上失败

转载 作者:太空宇宙 更新时间:2023-11-03 11:26:49 25 4
gpt4 key购买 nike

我只有这段代码。

string path = @"C:\Program Files (x86)\My App\Sub Folder of my App\";

if(Directory.Exists(path)) {
MessageBox.Show("It's here!");
} else {
MessageBox.Show("Can't find it!");
}

现在文件夹确实存在并运行命令:

explorer "C:\Program Files (x86)\My App\Sub Folder of my App\"

打开窗口,但在我的代码中它看不到文件夹。如果我有头发,我会把它拔掉。

关于为什么会发生这种情况有什么建议吗?

最佳答案

使用“@”您不需要转义反斜杠字符 (\)。

string path = "C:\\Program Files (x86)\\My App\Sub Folder of my App\\";

我最初的回答不正确,但我保留了这个答案,因为它可能对其他人有用。

关于c# - Directory.Exists 在 Program Files 中的文件夹上失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9067339/

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