Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #11191

Re: Directions on accessing shared folder in windows network

Date 2011-08-11 08:40 +0100
From Tim Golden <mail@timgolden.me.uk>
Subject Re: Directions on accessing shared folder in windows network
References <CACo0wzY3xek0ndJCrfUnxHM1LaQAoK1w+DcMifkbSxF=13yvwQ@mail.gmail.com> <j1uqgp$8ko$1@dough.gmane.org>
Newsgroups comp.lang.python
Message-ID <mailman.2157.1313048455.1164.python-list@python.org> (permalink)

Show all headers | View raw


On 10/08/2011 21:43, Christian Heimes wrote:
> Am 10.08.2011 21:52, schrieb Ameet Nanda:
>> Hi,
>>
>> Can anyone point me to a way to access windows shared folders from the
>> network using a python script. I tried accessing using open, which is
>> mentioned to work perfectly on the web, but it gives me following errors
>
> The open() function wraps the fopen() function, which doesn't support
> UNC, just local paths. You have to mount the network share first (assign
> a drive letter).

Christian, with respect: what are you talking about?

<code>
print open (r"\\localhost\c$\python27\python.exe").read (100)

</code>

The OP's problem is that he's trying to call open () on the
share itself, not on a file within it.

TJG

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Directions on accessing shared folder in windows network Tim Golden <mail@timgolden.me.uk> - 2011-08-11 08:40 +0100

csiph-web