C# Class Achilles.Acme.Storage.IO.File

Cloud Storage to System.IO Bridge File class.
Afficher le fichier Open project: Achilles-Software/CloudStorageProvider

Méthodes publiques

Méthode Description
Copy ( string sourceFileName, string destFileName ) : void
Copy ( string sourceFileName, string destFileName, bool overwrite ) : void
Delete ( string path ) : void
Exists ( string path ) : bool
Move ( string sourceFileName, string destFileName ) : void
OpenRead ( string path ) : System.IO.Stream
OpenWrite ( string path ) : System.IO.Stream

Method Details

Copy() public static méthode

public static Copy ( string sourceFileName, string destFileName ) : void
sourceFileName string
destFileName string
Résultat void

Copy() public static méthode

public static Copy ( string sourceFileName, string destFileName, bool overwrite ) : void
sourceFileName string
destFileName string
overwrite bool
Résultat void

Delete() public static méthode

public static Delete ( string path ) : void
path string
Résultat void

Exists() public static méthode

public static Exists ( string path ) : bool
path string
Résultat bool

Move() public static méthode

public static Move ( string sourceFileName, string destFileName ) : void
sourceFileName string
destFileName string
Résultat void

OpenRead() public static méthode

public static OpenRead ( string path ) : System.IO.Stream
path string
Résultat System.IO.Stream

OpenWrite() public static méthode

public static OpenWrite ( string path ) : System.IO.Stream
path string
Résultat System.IO.Stream