On Mar 27, 6:48 pm, Teja <[EMAIL PROTECTED]> wrote:
> On Mar 27, 8:34 am, Astan Chee <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi,
> > I have afileon another machine on the localnetwork(my machine and
> > local machines are on windows) and I want tocopyit locally. Now the
> > machine requires authentication and when I try to do a
> > import shutil
> > shutil.copy(r'\\remotemachine\c$\temp\filename',r'C:\folder\test.txt')
> > and it gives me a IOError: [Errno 13] Permission denied: error, which I
> > expect. How do I provide authentication tocopythisfile?
> > Thanks for the help.
> > Cheers
> > Astan
>
> > --
> > "Formulations of number theory: Complete, Consistent, Non-trivial. Choose 
> > two."
>
> > Animal Logichttp://www.animallogic.com
>
> > Please think of the environment before printing this email.
>
> > This email and any attachments may be confidential and/or privileged. If 
> > you are not the intended recipient of this email, you must not disclose or 
> > use the information contained in it. Please notify the sender immediately 
> > and delete this document if you have received it in error. We do not 
> > guarantee this email is error or virus free.
>
> Hi,
>
> Is the folder where the file is present i.e. "temp" in your case,
> shared????
> Can you share it and try it??
>
> I  tried this way and it worked!
>
> import shutil
>
> shutil.copyfile(r'\\129.124.66.112\Samplesharedfolder\samplefile.txt',
> r'C:\\Test\\temppp.txt')
>
> Try this way and let me know

I just discovered that this works for python upload into sharepoint
too :-)
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to