示例#1
0
 public void GetFullPath()
 {
     string[] pathList = new string[]
     {
         @"_TestFiles\TextFile.txt",
         @"C:\temp"
     };
     foreach (var entry in pathList)
     {
         QuickIOPath.GetFullPath(entry).Should().Be(System.IO.Path.GetFullPath(entry));
     }
 }
示例#2
0
        public void GetFullPathUnc()
        {
            string path = @"\\?\UNC\Server\Share\File.txt";

            QuickIOPath.GetFullPath(path).Should().Be(path);
        }