On Aug 22, 9:33 am, Gary Herron <[EMAIL PROTECTED]> wrote: > aditya shukla wrote: > > Hello guys > > > I am trying to search a file say xyz.txt > > > after searching i get the location of the file in > > > search_file (containing abspath) ,eg search_file="c:\\abc\\xyz.txt" > > > now how should i open this file > > > i can use file=open("c:\\abc\\xyz.txt","rb") but i have to use search_ > > file > > file=open(search_file,"rb")
and don't use the name of the built-in file function as one of your own names and if it's really a text file, don't use "rb", use "r" -- http://mail.python.org/mailman/listinfo/python-list