/// <summary> /// Deletes the given file from this project. /// </summary> public void DeleteFile(Gp4File f) { files.Items.Remove(f); }
public void RenameFile(Gp4File f, string newName) { f.TargetPath = f.DirName + newName; }