C# Class ParallelTestRunner.Common.Impl.WindowsFileHelperImpl

Inheritance: IWindowsFileHelper
Exibir arquivo Open project: sscobici/ParallelTestRunner

Public Methods

Method Description
CreateFile ( string path ) : Stream
CreateFolder ( string path ) : void
DeleteFile ( string path ) : void
DeleteFolder ( string path ) : void
FolderExist ( string path ) : bool
GetAssembly ( string path ) : Assembly
GetFile ( string folder, string ext ) : string
OpenFile ( string path ) : Stream
OpenResultFile ( ITestRunnerArgs args ) : Stream
WriteFile ( string path, string content ) : void

Method Details

CreateFile() public method

public CreateFile ( string path ) : Stream
path string
return Stream

CreateFolder() public method

public CreateFolder ( string path ) : void
path string
return void

DeleteFile() public method

public DeleteFile ( string path ) : void
path string
return void

DeleteFolder() public method

public DeleteFolder ( string path ) : void
path string
return void

FolderExist() public method

public FolderExist ( string path ) : bool
path string
return bool

GetAssembly() public method

public GetAssembly ( string path ) : Assembly
path string
return System.Reflection.Assembly

GetFile() public method

public GetFile ( string folder, string ext ) : string
folder string
ext string
return string

OpenFile() public method

public OpenFile ( string path ) : Stream
path string
return Stream

OpenResultFile() public method

public OpenResultFile ( ITestRunnerArgs args ) : Stream
args ITestRunnerArgs
return Stream

WriteFile() public method

public WriteFile ( string path, string content ) : void
path string
content string
return void