0

So I'm Building a search class, I need to get the title ("Titel" in picture) out from these files(see pic). enter image description here

Currently I'm getting the "Navn" from FileInfo.Name Can anyone help?

Community
  • 1
  • 1
Sinnich
  • 342
  • 5
  • 17
  • 1
    How? in which OS? from which programming language? We need some more info to answer this.. – opalenzuela Oct 16 '13 at 09:36
  • .NET, Windows 8 can be inferred from screenshot and tags – Bas Oct 16 '13 at 09:36
  • Why not just look at the good example on the [`FileInfo` Class](http://msdn.microsoft.com/en-us/library/system.io.fileinfo.aspx) page on MSDN? – Sheridan Oct 16 '13 at 09:37
  • @BasBrekelmans: it may be inferred, but I believe the OPs have to put cleary everything that is required to understand the question and the context of the question – Steve B Oct 16 '13 at 09:37
  • Opalenzuale: Programming language is C# build in WPF. Sheridan: Didnt get help there, but sure you can help me out from there since you referre to it? =) – Sinnich Oct 16 '13 at 09:55

1 Answers1

2

These are ID3 tags and cannot be queried using FileInfo.

You might use a library like TagLibSharp: see: View/edit ID3 data for MP3 files

Community
  • 1
  • 1
Emond
  • 50,210
  • 11
  • 84
  • 115