Пример #1
0
 public bool NewFolder(string FolderName)
 {
     Write w = new Write(Drive);
     return w.NewFolder(FolderName, this);
 }
Пример #2
0
 public bool InjectFolder(string FolderPath)
 {
     Write w = new Write(Drive);
     return w.NewFolder(FolderPath, this);
 }
Пример #3
0
 public bool InjectFile(string FilePath)
 {
     Write w = new Write(Drive);
     return w.WriteNewFile(this, FilePath);
 }
Пример #4
0
 public bool Delete()
 {
     Write w = new Write(Drive);
     return w.Delete(this);
 }
Пример #5
0
 public bool OverWrite(string NewFilePath)
 {
     Write w = new Write(Drive);
     return w.OverWriteFile(this, NewFilePath);
 }
Пример #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);
 }