public bool NewFolder(string FolderName) { Write w = new Write(Drive); return w.NewFolder(FolderName, this); }
public bool InjectFolder(string FolderPath) { Write w = new Write(Drive); return w.NewFolder(FolderPath, this); }
public bool InjectFile(string FilePath) { Write w = new Write(Drive); return w.WriteNewFile(this, FilePath); }
public bool Delete() { Write w = new Write(Drive); return w.Delete(this); }
public bool OverWrite(string NewFilePath) { Write w = new Write(Drive); return w.OverWriteFile(this, NewFilePath); }
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); }