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

GetFile() public method

public GetFile ( string path ) : MockFileData
path string
return MockFileData
        public MockFileData GetFile(string path)
        {
            path = FixPath(path);

            return GetFileWithoutFixingPath(path);
        }