Class FileAccessorAdapter
Inheritance
object
FileAccessorAdapter
Namespace: i5.Toolkit.Core.Experimental.SystemAdapters
Assembly: cs.temp.dll.dll
public class FileAccessorAdapter : IFileAccessor
Methods
Declaration
public void Delete(string path)
Parameters
Type |
Name |
Description |
string |
path |
|
Declaration
public bool Exists(string path)
Parameters
Type |
Name |
Description |
string |
path |
|
Returns
Declaration
public FileStream OpenRead(string path)
Parameters
Type |
Name |
Description |
string |
path |
|
Returns
Type |
Description |
FileStream |
|
ReadAllText(string)
Declaration
public string ReadAllText(string path)
Parameters
Type |
Name |
Description |
string |
path |
|
Returns
WriteAllText(string, string)
Declaration
public void WriteAllText(string path, string contents)
Parameters
Type |
Name |
Description |
string |
path |
|
string |
contents |
|
Implements