Hello I am pretty bad in C++ programming and i have this project to do. So program has to search through whole hard drive for MP3 files, and write to text file their name, path, and ID tags and made for Windows platform. Whole without using arrays. Can anyone help me a bit?
|
closed as not a real question by Mat, Bart, William Pursell, Ben, Mark Jan 5 at 11:19
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
This is pretty straight forward, first you need to iterate over all the files/folders recursively, filter the ones with the extension you are interested in (in this case .mp3 files), and then read the meta data to get the ID tags. This is how you can do it: Iterating over the files and folders: C++ doesn't provide a standard way of doing this, so you have to look into the different possible solutions available for you. If you are working with Windows, you can use the Win32 API:
If you are working in Unix/Linux:
And if you want a cross platform solution you can look into boost filesystem module. There are several implementations available over the internet using the former functions and methods. Filtering the Files: The general approach would be to split the string of the file path using the "." (dot) character as a separator and getting the last element (you will have to consider the case where the split is not successful due to the file not having dots). Example (not tested):
Getting the meta data: You can read about it here http://id3.org/
Example: This is a working implementation of some of the concepts explained above, this program iterate recursively over all the files and folders and print on the screen the ones with the .mp3 extension (It does not get the meta data information on the ID3 tag).
It uses Windows API, so if you are working with Linux or just want a cross platform solution, you will have to change the code. |
|||||||
|