import os
print os.listdir("\\\ \delta\\public" )
outputs
['Bases', 'Docs', 'Drivers', 'Soft', '\xc7\xe0\xec\x e5\xed\xe0
\xd1\xe5\xf2\xe 5\xe2\xee\xec\x f3 \xce\xea\xf0\xf 3\xe6\xe5\xed\x e8\xfe',
'Games']
and
import os
print os.listdir("\\\ \delta")
outputs
Traceback (most recent call last):
File "C:\Documen ts and Settings\åÇÏÒ\M y Documents\Scrip ts\test.py", line
4, in ?
print os.listdir("\\\ \delta")
WindowsError: [Errno 53] : '\\\\delta/*.*'
so how to get list of delta's shares?
print os.listdir("\\\ \delta\\public" )
outputs
['Bases', 'Docs', 'Drivers', 'Soft', '\xc7\xe0\xec\x e5\xed\xe0
\xd1\xe5\xf2\xe 5\xe2\xee\xec\x f3 \xce\xea\xf0\xf 3\xe6\xe5\xed\x e8\xfe',
'Games']
and
import os
print os.listdir("\\\ \delta")
outputs
Traceback (most recent call last):
File "C:\Documen ts and Settings\åÇÏÒ\M y Documents\Scrip ts\test.py", line
4, in ?
print os.listdir("\\\ \delta")
WindowsError: [Errno 53] : '\\\\delta/*.*'
so how to get list of delta's shares?
Comment