->First time when the program executes it walk through each folder in a specied directory and stores all .mp3 files.
This job is done by def get_path_songs(dire) function it return list of songs i.e 'pathofsong#songname'
->program execution stars from here.
first it checks whether the song_list file created or not.
when we execute it fist time it raise an exception such that get_path_songs is called and a file is created!
->created a class named mainframe to handle play,next song, previous song, pause (buttons) and used some tkinter methods.
->List of songs followed by four buttons are displayed. 1)A song can be selected from the list of songs(all song in your directory) are displayed and played using 'play' button.
2)A song can be paused by using 'pause' button.
3)Next song can be played using 'next' button.
4)Prev song can be played using 'prev' button.
5)The song which is being played is displayed at the botton of the window
Output window:
Thanks



