C# Class CSharpUtils.VirtualFileSystem.FileSystemUtils

Show file Open project: soywiz/csharputils

Public Methods

Method Description
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

Method Details

ContainsFileName() public static method

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

CopyFile() public static method

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

ExistsFile() public static method

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

ReadFile() public static method

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

WriteFile() public static method

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