C# 클래스 T4Scaffolding.Core.FileSystem.DefaultFileSystem

상속: IFileSystem
파일 보기 프로젝트 열기: processedbeets/ASP.NET-MVC-Scaffolding

공개 메소드들

메소드 설명
CreateDirectory ( string path ) : void
DirectoryExists ( string path ) : bool
FileExists ( string path ) : bool
FindFiles ( string path, string pattern, bool includeSubdirectories ) : IEnumerable
ReadAllText ( string path ) : string
WriteAllText ( string path, string textContents ) : void

메소드 상세

CreateDirectory() 공개 메소드

public CreateDirectory ( string path ) : void
path string
리턴 void

DirectoryExists() 공개 메소드

public DirectoryExists ( string path ) : bool
path string
리턴 bool

FileExists() 공개 메소드

public FileExists ( string path ) : bool
path string
리턴 bool

FindFiles() 공개 메소드

public FindFiles ( string path, string pattern, bool includeSubdirectories ) : IEnumerable
path string
pattern string
includeSubdirectories bool
리턴 IEnumerable

ReadAllText() 공개 메소드

public ReadAllText ( string path ) : string
path string
리턴 string

WriteAllText() 공개 메소드

public WriteAllText ( string path, string textContents ) : void
path string
textContents string
리턴 void