鉴于代码:
string p = @"C:\Users\Brian";
string p2 = @"\bin\Debug";
string result = Path.Combine(p, p2);//result: \bin\Debug
Console.WriteLine(result);
我希望看到以下结果:
C:\Users\Brian\bin\Debug
但结果是
\bin\Debug
如果我初始化p2 = @"bin\Debug";
然后结果如预期。看看MSDN,这似乎按设计工作:
如果path2不包含根(例如,如果path2未启动) 使用分隔符或驱动器规范),结果是a 这两条路径的连接,带有插入分隔符 字符。如果path2包含root,则返回path2。
IMO,在.NET中将\
排除为根更有意义。 AFAIK,这不是任何Windows操作系统上的有效根(\\
都可以)。然后,我可以组合部分路径,而不用担心部分路径是否以\
开头。
为什么这种方法设计为考虑单个\
根?
答案 0 :(得分:6)
为什么这个方法设计为考虑单个\?root?
因为就其他操作而言,是根。例如,在命令提示符下:
c:\Users\Jon\Test>dir \
Volume in drive C is Windows8_OS
Volume Serial Number is C058-6ADE
Directory of c:\
或者来自.NET中的其他文件操作:
using System;
using System.IO;
class Test
{
static void Main()
{
var lines = File.ReadAllLines(@"\Users\Jon\Test\Test.cs");
Console.WriteLine(lines.Length);
}
}
输出:
11
或者来自Java:
import java.io.*;
public class Test {
public static void main(String[] args) throws Exception {
String path = "\\Users\\Jon\\Test\\Test.java";
// Just to prove that the double backslashes are language escapes...
System.out.println(path);
// Obviously we'd normally clean stuff up...
InputStream stream = new FileInputStream(path);
BufferedReader reader = new BufferedReader
(new InputStreamReader(stream, "utf-8"));
System.out.println(reader.readLine());
}
}
输出:
\Users\Jon\Test\Test.java
import java.io.*;
我敢说本机代码也是如此。
那么,在不的情况下,Windows允许您启动带有“\”的路径以在当前驱动器中将其置为根目录?
为什么这个方法设计为考虑单个\?root?
我认为更大的问题是为什么你用\
开始了你想成为相对路径的原因。