Re: saving file permission denied on windows

2006-05-16 Thread zombek
That's right! I just didn't notice it. Thank you -- http://mail.python.org/mailman/listinfo/python-list

Re: saving file permission denied on windows

2006-05-15 Thread Larry Bates
[EMAIL PROTECTED] wrote: > I'm making a small program which takes a folder with images and > generates optimized normal-sized images and thumbnails using Python > Imaging Lbrary (PIL). The problem is here: > > os.mkdir(self.output) > > img = Image.open(os.path.join(self.dir,file)) > img =

Re: saving file permission denied on windows

2006-05-15 Thread zombek
The permission is OK I guess... I don't see anything about permission there, but I tried to save to maany other catalogs even to C:\ and D:\ and it raised the same error -- http://mail.python.org/mailman/listinfo/python-list

Re: saving file permission denied on windows

2006-05-15 Thread defcon8
Have you checked the persmissions to the folder? You can look from the properties of the folder to see. -- http://mail.python.org/mailman/listinfo/python-list

saving file permission denied on windows

2006-05-15 Thread zombek
I'm making a small program which takes a folder with images and generates optimized normal-sized images and thumbnails using Python Imaging Lbrary (PIL). The problem is here: os.mkdir(self.output) img = Image.open(os.path.join(self.dir,file)) img = img.resize(self.imgSize) # and here come