Skip to content

Export lyrics to text file #4

Description

@CyberSinh
// Export lyrics to text file

using System.IO;
using System.Text;
using Metatogger.Data;

foreach (var file in files)
{
	string lyrics = file.GetFirstValue(TagName.Lyrics);
	if (lyrics != null)
		 File.WriteAllText($"{file.FullPath} - Lyrics.txt", lyrics, Encoding.UTF8);
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions