[EMAIL PROTECTED]: > for x in imagefilenames: > imgfile=folder+"/"+x > newimgfilenamelist.append(imgfile) > > [..] how do i make it work on other os?
from os.path import join
#..
imgfile=join(folder, x)
--
Thomas Wittek
Web: http://gedankenkonstrukt.de/
Jabber: [EMAIL PROTECTED]
GPG: 0xF534E231
--
http://mail.python.org/mailman/listinfo/python-list
