K.S.Sreeram wrote:
> filepaths = [os.path.join(os.getcwd(),f) for f in filenames]

you can use os.path.abspath....

filepaths = [os.path.abspath(f) for f in filenames]

Attachment: signature.asc
Description: OpenPGP digital signature

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to