C# 클래스 DXVCSClient.FileSystem

파일 보기 프로젝트 열기: Xarlot/DXVcs2Git

공개 메소드들

메소드 설명
AppendAllText ( string path, string contents ) : void
CreateDirectory ( string path ) : void
CreateFile ( string path ) : void
CreateFile ( string path, FileAttributes fileAttribute, byte fileData ) : void
Delete ( string path ) : void
DirectoryExists ( string path ) : bool
Exists ( string path ) : bool
GetAttributes ( string path ) : FileAttributes
GetAttributes ( string path, FileAttributes &attributes, DateTime &lastWriteTime ) : bool
GetDirectories ( string path ) : string[]
GetDirectoriesRecursive ( string path ) : string[]
GetFiles ( string path ) : string[]
GetFilesRecursive ( string path ) : string[]
GetLastWriteTime ( string path ) : DateTime
GetLastWriteTime ( string path, DateTime &lastWriteTime ) : bool
GetLastWriteTimeUtc ( string path ) : DateTime
GetLastWriteTimeUtc ( string path, DateTime &lastWriteTimeUtc ) : bool
OpenRead ( string path ) : Stream
ReadAllBytes ( string path ) : byte[]
ReadAllLines ( string path ) : string[]
SetAttributes ( string path, FileAttributes attributes ) : void
SetLastWriteTime ( string path, DateTime date ) : void
SetLastWriteTimeUtc ( string path, DateTime date ) : void
WriteAllBytes ( string path, byte bytes ) : void
WriteAllBytes ( string path, byte bytes, FileAttributes attributes ) : void
WriteAllLines ( string path, string lines ) : void
WriteAllLines ( string path, string lines, FileAttributes attributes ) : void

메소드 상세

AppendAllText() 공개 메소드

public AppendAllText ( string path, string contents ) : void
path string
contents string
리턴 void

CreateDirectory() 공개 메소드

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

CreateFile() 공개 메소드

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

CreateFile() 공개 메소드

public CreateFile ( string path, FileAttributes fileAttribute, byte fileData ) : void
path string
fileAttribute FileAttributes
fileData byte
리턴 void

Delete() 공개 메소드

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

DirectoryExists() 공개 메소드

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

Exists() 공개 메소드

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

GetAttributes() 공개 메소드

public GetAttributes ( string path ) : FileAttributes
path string
리턴 FileAttributes

GetAttributes() 공개 메소드

public GetAttributes ( string path, FileAttributes &attributes, DateTime &lastWriteTime ) : bool
path string
attributes FileAttributes
lastWriteTime DateTime
리턴 bool

GetDirectories() 공개 메소드

public GetDirectories ( string path ) : string[]
path string
리턴 string[]

GetDirectoriesRecursive() 공개 메소드

public GetDirectoriesRecursive ( string path ) : string[]
path string
리턴 string[]

GetFiles() 공개 메소드

public GetFiles ( string path ) : string[]
path string
리턴 string[]

GetFilesRecursive() 공개 메소드

public GetFilesRecursive ( string path ) : string[]
path string
리턴 string[]

GetLastWriteTime() 공개 메소드

public GetLastWriteTime ( string path ) : DateTime
path string
리턴 DateTime

GetLastWriteTime() 공개 메소드

public GetLastWriteTime ( string path, DateTime &lastWriteTime ) : bool
path string
lastWriteTime DateTime
리턴 bool

GetLastWriteTimeUtc() 공개 메소드

public GetLastWriteTimeUtc ( string path ) : DateTime
path string
리턴 DateTime

GetLastWriteTimeUtc() 공개 메소드

public GetLastWriteTimeUtc ( string path, DateTime &lastWriteTimeUtc ) : bool
path string
lastWriteTimeUtc DateTime
리턴 bool

OpenRead() 공개 메소드

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

ReadAllBytes() 공개 메소드

public ReadAllBytes ( string path ) : byte[]
path string
리턴 byte[]

ReadAllLines() 공개 메소드

public ReadAllLines ( string path ) : string[]
path string
리턴 string[]

SetAttributes() 공개 메소드

public SetAttributes ( string path, FileAttributes attributes ) : void
path string
attributes FileAttributes
리턴 void

SetLastWriteTime() 공개 메소드

public SetLastWriteTime ( string path, DateTime date ) : void
path string
date DateTime
리턴 void

SetLastWriteTimeUtc() 공개 메소드

public SetLastWriteTimeUtc ( string path, DateTime date ) : void
path string
date DateTime
리턴 void

WriteAllBytes() 공개 메소드

public WriteAllBytes ( string path, byte bytes ) : void
path string
bytes byte
리턴 void

WriteAllBytes() 공개 메소드

public WriteAllBytes ( string path, byte bytes, FileAttributes attributes ) : void
path string
bytes byte
attributes FileAttributes
리턴 void

WriteAllLines() 공개 메소드

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

WriteAllLines() 공개 메소드

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