Feature #1112
Add support for UNC paths
Start date:
11/17/2015
Due date:
% Done:
100%
History
#1 Updated by Luke Murphey about 9 years ago
Seems like a couple things might be going on:
- UNC paths might need to have double-slashes (http://stackoverflow.com/questions/5224541/python-copy-files-to-a-network-location-on-windows-without-mapping-a-drive)
- UNC support in Python is weak (http://covenanteyes.github.io/py_win_unc/)
#2 Updated by Luke Murphey about 9 years ago
The issue is that the input is not using raw strings. The following fails:
f = open("\\Server\Shared Folders\somefile.jpg")
The following work:
f = open(r"\\Server\Shared Folders\somefile.jpg") f = open("\\\\Server\\Shared Folders\\somefile.jpg")
#4 Updated by Luke Murphey about 9 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
#5 Updated by Luke Murphey about 9 years ago
- Target version changed from 1.1 to 1.0.1