System.IO.Abstractions.TestingHelpers.MockFileSystem.FixPath C# (CSharp) Method

FixPath() private method

private FixPath ( string path ) : string
path string
return string
        private string FixPath(string path)
        {
            var pathSeparatorFixed = path.Replace(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar);
            return pathField.GetFullPath(pathSeparatorFixed);
        }