Comment 4 for bug 1021253

Revision history for this message
André Bachmann (andrebachmann-dd) wrote :

Here you go:

C:\Python27>python
Python 2.7.3 (default, Apr 10 2012, 23:24:47) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> r=os.lstat("\\\\server\\RedirectedFolders\\user1\\My Documents\\.bzr.log")
>>> print r
nt.stat_result(st_mode=33206, st_ino=0L, st_dev=0, st_nlink=0, st_uid=0, st_gid=0, st_size=1728851L, st_atime=1337669863L, st_mtime=1341473908L, st_ctime=1337669863L)
>>> s=os.stat("\\\\server\\RedirectedFolders\\user1\\My Documents\\.bzr.log")
>>> print s
nt.stat_result(st_mode=33206, st_ino=0L, st_dev=0, st_nlink=0, st_uid=0, st_gid=0, st_size=1728851L, st_atime=1337669863L, st_mtime=1341473908L, st_ctime=1337669863L)
>>>