本文整理汇总了C#中TagLib.Save方法的典型用法代码示例。如果您正苦于以下问题:C# TagLib.Save方法的具体用法?C# TagLib.Save怎么用?C# TagLib.Save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TagLib
的用法示例。
在下文中一共展示了TagLib.Save方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddSongToDirectory
static void AddSongToDirectory(TagLib.File file)
{
file.Save();
string fileName = file.Name.Split('\\').Last();
string currentPosition = file.Name;
string destination = directoryName + @"\" + file.Tag.Performers[0] + @"\" + file.Tag.Performers[0] + " - " + fileName;
System.IO.File.Move(currentPosition, destination);
}
示例2: CleanTitleData
private void CleanTitleData(TagLib.File file)
{
if(file.Tag.Title.IndexOfAny(new char[]{'[', '(','-'}) > -1)
{
int index = file.Tag.Title.IndexOfAny(new char[]{'[', '(','-'});
if (index > -1)
{
if(file.Tag.Title.Contains("(f") || file.Tag.Title.Contains(" f") || file.Tag.Title.Contains("(F") || file.Tag.Title.Contains(" F"))
return;
string newTitle = file.Tag.Title.Substring(0, index);
file.Tag.Title = newTitle;
file.Save();
}
}
}
示例3: ChangeMetadata
private void ChangeMetadata(TagLib.Image.File file)
{
file.ImageTag.Comment = "Testing!";
file.ImageTag.Keywords = new string [] { "One", "Two", "Three" };
file.Save ();
}
示例4: EditFileTags
private void EditFileTags(TagLib.File file)
{
if(string.IsNullOrEmpty(file.Tag.FirstPerformer) || string.IsNullOrEmpty(file.Tag.Title) || string.IsNullOrEmpty(file.Tag.Album))
{
DialogResult result = MessageBox.Show("The " + (string.IsNullOrEmpty(file.Tag.Title) ? "Title" : "Album name") + " is missing for this track. Would you like to edit?", file.Name.Substring(file.Name.LastIndexOf("\\") + 1), MessageBoxButtons.YesNo);
if(result == System.Windows.Forms.DialogResult.Yes)
{
editForm = new EditForm(file.Tag.FirstPerformer,file.Tag.Title, file.Tag.Album);
editForm.ShowDialog(this);
file.Tag.Title = editForm.Title;
file.Tag.Album = editForm.Album;
file.Save();
}
}
}