Hello, newbie here to both this forum and Python, so expect silliness!
My first project has been to build a GUI front end for some command line utilities I use regularly. One of them is the utility: eac3to which joins mp3 files together. It's command line is: "eac3to.exe infile1+infile2+infile3 outfile"
Using loops I can successfully scan a directory and make a list of the mp3 files in it. From it generate exactly the command line I need and it works beautifully. Unless one of the mp3 files has an apostrophe in the file name, in which case Python changes it to ", this , of course, makes it impossible for the OS to find the file.
Obviously the quick fix is to rename my files, but I don't like to be beaten!
Please give me a clue. Thanks.