| Method |
Description |
GetAllTextContent(filename) |
Gets the entire content of the filename |
| GetAllTextContentWithBreak(filename) |
Gets the entire content of the filename with text breaks |
| MakeFile(filename) |
Makes a file, if the file exists replace it with a new |
| ReplaceWords(filename, newword, oldword) |
Make the words you want for a given file |
| ReplaceLine(filename, linenr, content) |
Replace a line with the given linenr |
| InsertLineAfter(filename, linenr, addcontent) |
Inserts a line after a given linenr |
| InsertLineBefore(filename, linenr, addcontent) |
Inserts a line before a given linenr |
| DeleteFile(filename) |
Delete a filename |
| DeleteLine(filename, linenr) |
Deletes a line with a given linenr |
| DeleteWord(filename, word) |
Deletes the given words from the file |