Method | Description | |
---|---|---|
Copy ( string source, string destination ) : void | ||
Delete ( string tmpFileName ) : void | ||
Exists ( string path ) : bool | ||
Move ( string source, string destination ) : void | ||
Open ( string fileName, FileMode fileMode ) : |
||
ReadAllBytes ( string path ) : byte[] | ||
ReadAllText ( string fileName ) : string | ||
WriteAllBytes ( string path, byte contents ) : void | ||
WriteAllText ( string path, string contents ) : void |
public Copy ( string source, string destination ) : void | ||
source | string | |
destination | string | |
return | void |
public Move ( string source, string destination ) : void | ||
source | string | |
destination | string | |
return | void |
public Open ( string fileName, FileMode fileMode ) : |
||
fileName | string | |
fileMode | FileMode | |
return |
public ReadAllText ( string fileName ) : string | ||
fileName | string | |
return | string |
public WriteAllBytes ( string path, byte contents ) : void | ||
path | string | |
contents | byte | |
return | void |
public WriteAllText ( string path, string contents ) : void | ||
path | string | |
contents | string | |
return | void |