I was making a app to store music in a libary and get mp3 ID3 tags but all the code snippets ive found are really complicated, i tried using the my.computer.filesystem.getfileinfo to add the tags to a box
Dim tags As ObjectModel.ReadOnlyCollection(Of String) = My.Computer.FileSystem.GetFileinfo(my.computer.filesystem.getfiles("C:\Program files\TuNeAgE music"))
Dim Foundtags(tags.Count - 1) As String
tags.CopyTo(Foundtags, 0)
tagbx.Items.AddRange(Foundtags)
but i get an error with My.Computer.FileSystem.GetFileinfo(my.computer.filesystem.getfiles("C:\Program files\TuNeAgE music"))does anyone know how to get the info of all the files in a directory into a box OR get the ID3 tags of all music files in a directory and put them in a box (simply)