|
| static void | AppendAllText< T > (string data, string filename, Vessel flight=null) |
| | Append a string to a file, or creates it if it doesn't exist. More...
|
| |
| static TextWriter | AppendText< T > (string filename, Vessel flight=null) |
| | Open a stream that appends to a file. More...
|
| |
| static FileStream | Create< T > (string filename, Vessel flight=null) |
| | Open a stream that creates a file. More...
|
| |
| static TextWriter | CreateText< T > (string filename, Vessel flight=null) |
| | Open a stream that creates a file. More...
|
| |
| static void | Delete< T > (string filename, Vessel flight=null) |
| | Delete a file in your IO sandbox. More...
|
| |
| static bool | Exists< T > (string filename, Vessel flight=null) |
| | Find out if a file in your IO sandbox exists. More...
|
| |
| static FileStream | Open< T > (string filename, FileMode mode, Vessel flight=null) |
| | Open a stream that operates on a file. More...
|
| |
| static TextReader | OpenText< T > (string filename, Vessel flight=null) |
| | Open a stream that operates on a file. More...
|
| |
| static FileStream | OpenWrite< T > (string filename, Vessel flight=null) |
| | Open a stream that writes to a file. More...
|
| |
| static byte[] | ReadAllBytes< T > (string filename, Vessel flight=null) |
| | Read all the bytes from a file in your IO sandbox. More...
|
| |
| static string[] | ReadAllLines< T > (string filename, Vessel flight=null) |
| | Read all lines from a file in your IO sandbox. More...
|
| |
| static string | ReadAllText< T > (string filename, Vessel flight=null) |
| | Read all the text from a file in your IO sandbox. More...
|
| |
| static void | WriteAllBytes< T > (byte[] data, string filename, Vessel flight=null) |
| | Write a bunch of bytes to a file on disk More...
|
| |
| static void | WriteAllLines< T > (string[] data, string filename, Vessel flight=null) |
| | Write an array of strings to a file, with each string becoming a line. More...
|
| |
| static void | WriteAllText< T > (string data, string filename, Vessel flight=null) |
| | Write a string to a file. More...
|
| |