windows file names in Python

r.e.s. r.s at ZZmindspring.com
Wed Feb 18 17:13:17 EST 2004


<beliavsky at aol.com> wrote in message
news:3064b51d.0402181333.12d57963 at posting.google.com...
> I know to use "\\" as the separator in Windows file names to get them
> recognized in Python. Is there a way to get "\" recognized as a
> directory separator?

Like this, for example? ...

fpath = r'C:\Documents and Settings\res\test.txt'
f = open(fpath,'wb')

--r.e.s.




More information about the Python-list mailing list