C# 클래스 DuplicateFinder.Core.Abstractions.FileSystem

상속: IFileSystem
파일 보기 프로젝트 열기: agross/duplicatefinder 1 사용 예제들

공개 메소드들

메소드 설명
AllFilesWithin ( string path ) : IEnumerable
CreateStreamFrom ( string path ) : Stream
Delete ( string path ) : void
Exists ( string path ) : bool
GetSize ( string path ) : long
ReadAllLines ( string path ) : IEnumerable
WriteAllLines ( string path, IEnumerable lines ) : void

비공개 메소드들

메소드 설명
CanRead ( string path ) : bool
ReadableFiles ( string path ) : IEnumerable

메소드 상세

AllFilesWithin() 공개 메소드

public AllFilesWithin ( string path ) : IEnumerable
path string
리턴 IEnumerable

CreateStreamFrom() 공개 메소드

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

Delete() 공개 메소드

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

Exists() 공개 메소드

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

GetSize() 공개 메소드

public GetSize ( string path ) : long
path string
리턴 long

ReadAllLines() 공개 메소드

public ReadAllLines ( string path ) : IEnumerable
path string
리턴 IEnumerable

WriteAllLines() 공개 메소드

public WriteAllLines ( string path, IEnumerable lines ) : void
path string
lines IEnumerable
리턴 void