C# Class CSharpUtils.VirtualFileSystem.FileSystemUtils

Afficher le fichier Open project: soywiz/csharputils

Méthodes publiques

Méthode 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 méthode

public static ContainsFileName ( this FileSystemEntry, String FileName ) : bool
FileSystemEntry this
FileName String
Résultat bool

CopyFile() public static méthode

public static CopyFile ( this FileSystem, String SourcePath, String DestinationPath ) : void
FileSystem this
SourcePath String
DestinationPath String
Résultat void

ExistsFile() public static méthode

public static ExistsFile ( this FileSystem, String Path ) : bool
FileSystem this
Path String
Résultat bool

ReadFile() public static méthode

public static ReadFile ( this FileSystem, String Path ) : byte[]
FileSystem this
Path String
Résultat byte[]

WriteFile() public static méthode

public static WriteFile ( this FileSystem, String Path, byte Data ) : void
FileSystem this
Path String
Data byte
Résultat void