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

RemoveFile() public method

public RemoveFile ( string path ) : void
path string
return void
        public void RemoveFile(string path)
        {
            path = FixPath(path);

            lock (files)
                files.Remove(path);
        }