C# 클래스 CSharpUtils.VirtualFileSystem.FileSystemUtils

파일 보기 프로젝트 열기: soywiz/csharputils

공개 메소드들

메소드 설명
ContainsFileName ( this FileSystemEntry, String FileName ) : bool
CopyFile ( this FileSystem, String SourcePath, String DestinationPath ) : void
ExistsFile ( this FileSystem, String Path ) : bool
ReadFile ( this FileSystem, String Path ) : byte[]
WriteFile ( this FileSystem, String Path, byte Data ) : void

메소드 상세

ContainsFileName() 공개 정적인 메소드

public static ContainsFileName ( this FileSystemEntry, String FileName ) : bool
FileSystemEntry this
FileName String
리턴 bool

CopyFile() 공개 정적인 메소드

public static CopyFile ( this FileSystem, String SourcePath, String DestinationPath ) : void
FileSystem this
SourcePath String
DestinationPath String
리턴 void

ExistsFile() 공개 정적인 메소드

public static ExistsFile ( this FileSystem, String Path ) : bool
FileSystem this
Path String
리턴 bool

ReadFile() 공개 정적인 메소드

public static ReadFile ( this FileSystem, String Path ) : byte[]
FileSystem this
Path String
리턴 byte[]

WriteFile() 공개 정적인 메소드

public static WriteFile ( this FileSystem, String Path, byte Data ) : void
FileSystem this
Path String
Data byte
리턴 void