Hello,
I'm using Windows XP and Windows Server 2003 for a work.
I need to copy a file from shared dir to my pc. This is my file location.
\\NOTEBOOK\\Sha redDocs\\Musica \\Musica campione\\a.wma
I tried to use os.system and open:
And system returns nothing...But nothing happens too. (in fact cmd tells me that the folder path is unknown). I've got all the right privileges, because using explorer I can get my file.
Thank you,
Luca
I'm using Windows XP and Windows Server 2003 for a work.
I need to copy a file from shared dir to my pc. This is my file location.
\\NOTEBOOK\\Sha redDocs\\Musica \\Musica campione\\a.wma
I tried to use os.system and open:
Code:
open("\\NOTEBOOK\\SharedDocs\\Musica\\Musica campione\\a.wma","r").read() Traceback (most recent call last): File "<pyshell#3>", line 1, in <module> open("\\NOTEBOOK\\SharedDocs\\Musica\\Musica campione\\a.wma","r").read() IOError: [Errno 2] No such file or directory: '\\NOTEBOOK\\SharedDocs\\Musica\\Musica campione\\a.wma'
Thank you,
Luca
Comment