C# 클래스 FluentBuild.Utilities.FileSystemHelper

Finds files recursevely in a directory
상속: IFileSystemHelper
파일 보기 프로젝트 열기: SkightTeam/eLiteWeb 1 사용 예제들

공개 메소드들

메소드 설명
CreateFile ( string path ) : Stream
FileSystemHelper ( ) : System

Instantiates a new FileSystemHelper

Find ( string fileName ) : string

Finds a file in the CURRENT directory and searches subdirectories

Find ( string fileName, string directory ) : string

Finds a file in a directory and searches subdirectories

FindInFoldersRecursively ( string directory, string filter ) : List
ReadFile ( string path ) : Stream

비공개 메소드들

메소드 설명
FileSystemHelper ( IFileSystemWrapper fileSystem ) : System

메소드 상세

CreateFile() 공개 메소드

public CreateFile ( string path ) : Stream
path string
리턴 Stream

FileSystemHelper() 공개 메소드

Instantiates a new FileSystemHelper
public FileSystemHelper ( ) : System
리턴 System

Find() 공개 메소드

Finds a file in the CURRENT directory and searches subdirectories
public Find ( string fileName ) : string
fileName string The filename to search for
리턴 string

Find() 공개 메소드

Finds a file in a directory and searches subdirectories
public Find ( string fileName, string directory ) : string
fileName string The filename to find
directory string The starting directory to search
리턴 string

FindInFoldersRecursively() 공개 메소드

public FindInFoldersRecursively ( string directory, string filter ) : List
directory string
filter string
리턴 List

ReadFile() 공개 메소드

public ReadFile ( string path ) : Stream
path string
리턴 Stream