Pranav Bagora wrote:

> Hello ,
> i am trying to change mode of files using the
> os.chmod()function. But i am getting an error
> 
> " os.chmod(outfile,0700)
> TypeError: coercing to Unicode: need string or buffer,
> file found"

Looks as if your are using a file object (that you got from an open() call)
as the first parameter. What you need is a string with the path to the
file.

-- 
Benjamin Niemann
Email: pink at odahoda dot de
WWW: http://www.odahoda.de/
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to