Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export lyrics to text file #4

Open
CyberSinh opened this issue Nov 11, 2017 · 0 comments
Open

Export lyrics to text file #4

CyberSinh opened this issue Nov 11, 2017 · 0 comments
Labels

Comments

@CyberSinh
Copy link
Member

// 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);
}
@luminescence-software luminescence-software locked and limited conversation to collaborators May 27, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

1 participant