readFile()
From Hack Wars Wiki
| Information for free function readFile() | |
| Function | readFile(string file) |
| API | Attacking, Banking, FTP, Watch, HTTP |
| Description | Reads all the content in a file. |
Example
The following code will put the entire contents of "test.txt" into a variable.
string contents=readFile("test.txt"); |
