为什么 Path.Combine 不在驱动器指示符后添加 Path.DirectorySeparatorChar?
var actual = Path.Combine("c:", "filename"); var expected = @"c:\filename"; Assert.AreEqual(expected, actual); 结果 {Assert.AreEqual failed.…
System.ArgumentException 路径中存在非法字符
我正在使用 Path.Combine,并且其中一个字符串包含 Unicode 字符。 我收到 {System.ArgumentException} 异常; 路径中存在非法字符。 根据 MSDN 文件…
- 共 1 页
- 1