Esempio n. 1
0
 public bool NewFolder(string FolderName)
 {
     Write w = new Write(Drive);
     return w.NewFolder(FolderName, this);
 }
Esempio n. 2
0
 public bool InjectFolder(string FolderPath)
 {
     Write w = new Write(Drive);
     return w.NewFolder(FolderPath, this);
 }
Esempio n. 3
0
 public bool InjectFile(string FilePath)
 {
     Write w = new Write(Drive);
     return w.WriteNewFile(this, FilePath);
 }
Esempio n. 4
0
 public bool Delete()
 {
     Write w = new Write(Drive);
     return w.Delete(this);
 }
Esempio n. 5
0
 public bool OverWrite(string NewFilePath)
 {
     Write w = new Write(Drive);
     return w.OverWriteFile(this, NewFilePath);
 }
Esempio n. 6
0
 public bool Delete(ref long ProgressUpdate, ref long ProgressMax, ref string CurrentFile)
 {
     Write w = new Write(Drive);
     return w.Delete(this, ref ProgressUpdate, ref ProgressMax, ref CurrentFile);
 }