Метод | Описание | |
---|---|---|
Copy ( string source, string destination ) : void | ||
CreateDirectory ( string path ) : void | ||
DeleteDirectory ( string path, bool recursive ) : void | ||
DeleteFile ( string path ) : void | ||
DirectoryExists ( string path ) : bool | ||
FileExists ( string path ) : bool | ||
GetDirectories ( string directory ) : IEnumerable |
||
GetFilesIn ( string directory ) : IEnumerable |
||
MoveFile ( string origin, string destination ) : void | ||
ReadAllText ( string path ) : string | ||
WriteAllText ( string destination, string input ) : void |
public Copy ( string source, string destination ) : void | ||
source | string | |
destination | string | |
Результат | void |
public CreateDirectory ( string path ) : void | ||
path | string | |
Результат | void |
public DeleteDirectory ( string path, bool recursive ) : void | ||
path | string | |
recursive | bool | |
Результат | void |
public DirectoryExists ( string path ) : bool | ||
path | string | |
Результат | bool |
public GetDirectories ( string directory ) : IEnumerable |
||
directory | string | |
Результат | IEnumerable |
public GetFilesIn ( string directory ) : IEnumerable |
||
directory | string | |
Результат | IEnumerable |
public MoveFile ( string origin, string destination ) : void | ||
origin | string | |
destination | string | |
Результат | void |
public ReadAllText ( string path ) : string | ||
path | string | |
Результат | string |
public WriteAllText ( string destination, string input ) : void | ||
destination | string | |
input | string | |
Результат | void |