如何在Windows中的特定网络路径上打开Python解释器?
在资源管理器地址栏中,路径采用UNC格式:\\myhost\myshare\...
。
我无法弄清楚如何从Windows命令行更改到此目录,也不知道我可以将其作为参数传递给os.chdir
的格式。
我在Windows XP上运行Python 2.5。 IDLE已安装。
谢谢!
答案 0 :(得分:2)
好吧,无论如何我会问它,因为它之前有点咬我但是你尝过类似的东西吗?
path = r'\\myhost\myshare\some_file.dat'
r
是重要的一点。See this post as well。
答案 1 :(得分:0)
您需要将其映射为驱动器。
答案 2 :(得分:0)
希望这会有所帮助:http://www.blog.pythonlibrary.org/2008/05/12/mapping-drives-on-windows/
编辑:
for root, dirs, files in os.walk(r'\\myhost\myshare\'):
print root, dirs