Python image library issue: domain users cannot save files?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • vixvixreg@gmail.com

    Python image library issue: domain users cannot save files?

    Hi,
    Has anyone try to use PIL in a windows domain environment? I am having
    a permission issue. If I am a domain user, even I have the permission
    to write a folder, when I tried to do simple things like Image.open
    ("foo.tif").sav e("bar.tif"), i am getting exception IOError ("0",
    "Error"). I tried to set os.umask(0) before I saved the file but the
    same exception threw. But If I am the same domain user with local
    admin permission on a windows box, I have no problem with the same
    script. Does anyone ever have the same situation and know a work
    around for this? Thanks.

    Best,

    Vix
  • Gabriel Genellina

    #2
    Re: Python image library issue: domain users cannot save files?

    En Wed, 19 Nov 2008 13:43:07 -0200, vixvixreg@gmail .com
    <vixvixreg@gmai l.comescribió:
    Has anyone try to use PIL in a windows domain environment? I am having
    a permission issue. If I am a domain user, even I have the permission
    to write a folder, when I tried to do simple things like Image.open
    ("foo.tif").sav e("bar.tif"), i am getting exception IOError ("0",
    "Error"). I tried to set os.umask(0) before I saved the file but the
    same exception threw. But If I am the same domain user with local
    admin permission on a windows box, I have no problem with the same
    script. Does anyone ever have the same situation and know a work
    around for this? Thanks.
    Try using the builtin open() function to create/read/write files. If you
    have the same issues then you can take away PIL from the question and
    concentrate on setting the proper permissions for the user running the
    script.

    --
    Gabriel Genellina

    Comment

    • vixvixreg@gmail.com

      #3
      Re: Python image library issue: domain users cannot save files?

      I have no problem with the python builtin open which we use dayly.
      Thanks for the hints.

      Best,
      V

      On Nov 19, 5:56 pm, "Gabriel Genellina" <gagsl-...@yahoo.com.a r>
      wrote:
      En Wed, 19 Nov 2008 13:43:07 -0200, vixvix...@gmail .com  
      <vixvix...@gmai l.comescribió:
      >
      Has anyone try to use PIL in a windows domain environment? I am having
      a permission issue. If I am a domain user, even I have the permission
      to write a folder, when I tried to do simple things like Image.open
      ("foo.tif").sav e("bar.tif"), i am getting exception IOError ("0",
      "Error"). I tried to set os.umask(0) before I saved the file but the
      same exception threw. But If I am the same domain user with local
      admin permission on a windows box, I have no problem with the same
      script. Does anyone ever have the same situation and know a work
      around for this? Thanks.
      >
      Try using the builtin open() function to create/read/write files. If you  
      have the same issues then you can take away PIL from the question and  
      concentrate on setting the proper permissions for the user running the  
      script.
      >
      --
      Gabriel Genellina

      Comment

      Working...