Sys
string Sys.ReadFile(string filepath)
Read a file and return it's content.
Println(Sys.ReadFile("LogTest.cs")); //Output the contents of "LogTest.cs" to the terminal |
void Sys.Quit()
Quit FTP Rush.
int Sys.ColorFromRGB(int red, int green, int blue)
Create a color from 8-bit RGB components.
RushFileFilter filter = new RushFileFilter { Mask = "*.jpg", Color = Sys.ColorFromRGB(255,0,0), FileFilterScope = FileFilterScope.File}; //Create a "Red" color file filter |