I am looking at the glob man page and I cannot make the matching patterns work in python. I have this so far...
glob.glob('file.*') + glob.glob('file[0-9].*')
and this works and return me a list as long as the file numbers o not exceed 9. If I make a file100.txt it does not work, and if I try the range [0-100] or [0-1000] it does not change anything...
So my question is how can I make this match any number....and also how can I combine it into one statement, it seems like it should be once statement.