我System.IO.File.Exists
用来检查文件是否存在。但是,对于我知道存在的文件,它返回 false。代码如下:
Assert.IsTrue(System.IO.File.Exists(@"\ImportRepositoryTest\Version2.xml"));
System.IO.File
当文件确实存在时,为什么返回false?
我System.IO.File.Exists
用来检查文件是否存在。但是,对于我知道存在的文件,它返回 false。代码如下:
Assert.IsTrue(System.IO.File.Exists(@"\ImportRepositoryTest\Version2.xml"));
System.IO.File
当文件确实存在时,为什么返回false?
尝试
Assert.IsTrue(System.IO.File.Exists(Path.Combine(TestContext.TestDeploymentDir, @"\ImportRepositoryTest\Version2.xml")));
将其更改为Assert.IsTrue(System.IO.File.Exists(@".\ImportRepositoryTest\Version2.xml"));
(使用“.”)并仔细检查您是否将文件标记为“始终复制”。