"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>



-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to