remote file

Fredrik Lundh fredrik at pythonware.com
Wed Jan 25 13:26:25 EST 2006


"yqyq22" wrote:

> How to open remote file ? example: \\server\share\file.txt

like you'd open any other file:

    f = open(filename)

e.g.

    f = open(r"\\server\share\file.txt")

</F>






More information about the Python-list mailing list