I have a glob.glob search:
searchstring = os.path.join('p ath'+'EN*')
files = glob.glob(searc hstring)
for f in files:
print f
___
This returns some files:
EN082333
EN092334
EN*
My routine cannot handle the '*' and it should'nt be returned anyway? :-/
A bug?
--
View this message in context: http://www.nabble.com/appending-*-to...p19579121.html
Sent from the Python - python-list mailing list archive at Nabble.com.
Comment