SubSonic.Extensions.UpdateFileText

edit

SubSonic.Extensions.UpdateFileText

Summary== Update text within a file by replacing a substring within the file. ==Namespace

Example=="C:\\myfile.txt".UpdateFileText("find me","replace with"); ==Unit Test

public void UpdateFileTextShouldReplaceExistingFile_Text() { //sorry for this test "this is a stupid test".CreateToFile("C:\testfile3.txt"); "C:\testfile3.txt".UpdateFileText("stupid", "really stupid"); //it's the only way I can think of to do it Assert.Equal("C:\testfile3.txt".GetFileText(), "this is a really stupid test"); }

Comments

SubSonic 3.0 implements this as an extension on System.String - 2.x uses a static method on SubSonic.Sugar.Files.