Method | Description | |
---|---|---|
CopyFile ( string sourceFilePath, string targetPath ) : bool | ||
CreateDirectory ( string path ) : bool | ||
DeleteDirectory ( string folderPath ) : bool | ||
DeleteFile ( string filePath ) : bool | ||
DirectoryExists ( string directoryPath ) : bool | ||
EnsureParentDirectoryExists ( string filePath ) : bool | ||
FileExists ( string filePath ) : bool | ||
GetAllFiles ( string path ) : IEnumerable |
||
GetFileContent ( string filePath ) : string | ||
GetFiles ( string path ) : IEnumerable |
||
GetReadStream ( string filePath ) : Stream | ||
GetSubDirectories ( string path ) : IEnumerable |
||
GetTextReader ( string filePath ) : TextReader | ||
GetTextWriter ( string filePath ) : TextWriter | ||
GetWriteStream ( string filePath ) : Stream | ||
MoveFile ( string sourceFilePath, string targetFilePath ) : bool | ||
PhysicalFilesystemAccessor ( IEncodingProvider encodingProvider ) : System | ||
WriteContentToFile ( string content, string filePath ) : bool |
public CopyFile ( string sourceFilePath, string targetPath ) : bool | ||
sourceFilePath | string | |
targetPath | string | |
return | bool |
public CreateDirectory ( string path ) : bool | ||
path | string | |
return | bool |
public DeleteDirectory ( string folderPath ) : bool | ||
folderPath | string | |
return | bool |
public DirectoryExists ( string directoryPath ) : bool | ||
directoryPath | string | |
return | bool |
public EnsureParentDirectoryExists ( string filePath ) : bool | ||
filePath | string | |
return | bool |
public GetAllFiles ( string path ) : IEnumerable |
||
path | string | |
return | IEnumerable |
public GetFileContent ( string filePath ) : string | ||
filePath | string | |
return | string |
public GetFiles ( string path ) : IEnumerable |
||
path | string | |
return | IEnumerable |
public GetReadStream ( string filePath ) : Stream | ||
filePath | string | |
return | Stream |
public GetSubDirectories ( string path ) : IEnumerable |
||
path | string | |
return | IEnumerable |
public GetTextReader ( string filePath ) : TextReader | ||
filePath | string | |
return | TextReader |
public GetTextWriter ( string filePath ) : TextWriter | ||
filePath | string | |
return | TextWriter |
public GetWriteStream ( string filePath ) : Stream | ||
filePath | string | |
return | Stream |
public MoveFile ( string sourceFilePath, string targetFilePath ) : bool | ||
sourceFilePath | string | |
targetFilePath | string | |
return | bool |
public PhysicalFilesystemAccessor ( IEncodingProvider encodingProvider ) : System | ||
encodingProvider | IEncodingProvider | |
return | System |
public WriteContentToFile ( string content, string filePath ) : bool | ||
content | string | |
filePath | string | |
return | bool |