gpt4 book ai didi

c# - 将 Environment.CurrentDirectory 与反向路径串联起来

转载 作者:太空狗 更新时间:2023-10-29 22:10:18 25 4
gpt4 key购买 nike

如果我有以下目录结构:

项目1/bin/调试
项目2/xml/file.xml

我正在尝试引用 Project1/bin/debug 目录中的 file.xml

我实际上是在尝试执行以下操作:

string path = Environment.CurrentDirectory + @"..\..\Project2\xml\File.xml":

正确的语法是什么?

最佳答案

将路径组件作为路径组件而不是字符串来操作可能更好:

string path = System.IO.Path.Combine(Environment.CurrentDirectory, 
@"..\..\..\Project2\xml\File.xml");

关于c# - 将 Environment.CurrentDirectory 与反向路径串联起来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/346243/

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