Can anyone give me advice on how to attack this problem?
I have files in a directory that are named in a convention dayMonthrandomstuff. I need to sort these files into folders based on month then date. So example, "15e23dr" would go into the "May" folder since "e" is the 5th letter in the alphabet and within that folder, it would go into folder 15, since that's the day. "02a28db" would go into January --> 02.
Now, I have blurry logic on what I want to do: Pull all the filenames from the directory using "IO.Directory.GetFiles" then loop through each file(storing them in an array?) and have If statements doing the work of moving the files where they need to go. But I'm lost on how to put this all together. I was hoping a more experienced VB.net programmer could help me strengthen the logic on this. If I can get a solid picture on what I need to do, then I can use the APIs.
Thanks