/// <summary> /// Save both ID3v2 and ID3v1 /// </summary> /// <param name="Formula">Formula to rename file while saving</param> public bool Save(string Formula) { ID3v1Info.Save(); ID3v2Info.Save(Formula); ID3v1Info.FilePath = ID3v2Info.FilePath; return(true); }
/// <summary> /// Save current ID3Info in specific location /// </summary> /// <param name="path">Path to save</param> /// <returns>True if save successfull</returns> public bool SaveAs(string path) { ID3v2Info.SaveAs(path); ID3v1Info.FilePath = ID3v2Info.FilePath; ID3v1Info.Save(); return(true); }