scanning music gallery

i am just a beginner..and i read someone suggesting some other one to build up a software that can scan the music gallery and rename the names of songs as wish....but i am not able to think how to scan the gallery.can some one plz give me a hint
Scanning a directory is pretty easy, your OS will have a set of functions readily availible to do this with. Even changing the name isn't difficult. The problem is that without a massive data base of precompiled hashes how would you identify each song?
From the MP3 tag.
i will limit my program in order to identify songs....and change it as i require....but please tell me how to scan a directory and change the name.....can you plz explain me with an example........
Sure, can I get what OS\API you plan on using?

EDIT: @ webJose: Oh... well ok then... :/
Last edited on
i am using windows 7 ......and my compiler is wxdev c++
I actually just use CopyFile(): http://msdn.microsoft.com/en-us/library/aa363851(VS.85).aspx to rename files, I think there is a "Right way" to do it but I'll have to get back to you after I look that up :P.

EDIT: I also use DeleteFile(): http://msdn.microsoft.com/en-us/library/aa363915(VS.85).aspx to clean up the old one.
Last edited on
Topic archived. No new replies allowed.