I am trying to do this
if os.path.exists("*.*.txt"):
file=open("*.*.txt")
self.text_view.get_buffer().set_text(file.read())
else:
file=open("*.*.html")
self.text_view.get_buffer().set_text(file.read())It gives error *.*.txt not existing....There are two files in the folder testing.pnm.txt and testing.pnm.html How to make it open any name and extension file and read it? Regards Varnika Tewari
-- http://mail.python.org/mailman/listinfo/python-list
