So i'm still working on my music sorter, and i've encountered another slight issue with the case of extensions.
I'm using

Code:
 My.Computer.FileSystem.GetFiles(PATH, FileIO.SearchOption.SearchAllSubDirectories, FORMATS)
to get at the files, but since this is done with a string for the formats, i need to be able to get each permutation of the case of each format

so if it's *.mp3, i'll also get *.Mp3, *.mP3, and *.MP3

I've tried any number of things, but what i would like to do is accumulate to a variable so i can return a great big string containing all of the various case permutations

Code:
       For Each element In inputArray
            For Each i In element
             'what do i do here :(
            Next
            MessageBox.Show(element)

        Next

and i'd still like to know how to embed the dll in my exe