我知道这是一个简单的,初学者的Python问题,但是我在使用相对路径打开文件时遇到了麻烦。这种行为对我来说似乎很奇怪(来自非Python背景):
import os, sys
titles_path = os.path.normpath("../downloads/movie_titles.txt")
print "Current working directory is {0}".format(os.getcwd())
print "Titles path is {0}, exists? {1}".format(movie_titles_path, os.path.exists(movie_titles_path))
titlesFile = open(movie_titles_path, 'r')
print titlesFile
这导致:
C:\Users\Matt\Downloads\blah>testscript.py
Current working directory is C:\Users\Matt\Downloads\blah
Titles path is ..\downloads\movie_titles.txt, exists? False
Traceback (most recent call last):
File "C:\Users\Matt\Downloads\blah\testscript.py", line 27, in <module>
titlesFile = open(titles_path, 'r')
IOError: [Errno 2] No such file or directory: '..\\downloads\\movie_titles.txt'
但是,dir命令会在相对路径中显示此文件:
C:\Users\Matt\Downloads\blah>dir /b ..\downloads\movie_titles.txt
movie_titles.txt
Python如何解释Windows上的相对路径是怎么回事?使用相对路径打开文件的正确方法是什么?
,如果我将路径包裹在os.path.abspath()
中,那么我会得到此输出:
Current working directory is C:\Users\Matt\Downloads\blah
Titles path is C:\Users\Matt\Downloads\downloads\movie_titles.txt, exists? False
Traceback (most recent call last):
File "C:\Users\Matt\Downloads\blah\testscript.py", line 27, in <module>
titlesFile = open(titles_path, 'r')
IOError: [Errno 2] No such file or directory: 'C:\\Users\\Matt\\Downloads\\downloads\\movie_titles.txt'
在这种情况下,似乎open()
命令会自动转义\
个字符。
**令人尴尬的最终更新:看起来我在pathanme中使用了一个角色:)在Windows上执行此操作的正确方法似乎是使用os.path.normpath()
,就像我最初一样。
答案 0 :(得分:3)
normpath
仅返回该特定路径的规范化版本。它实际上并没有完成解析路径的工作。您可能想要os.path.abspath(yourpath)
。
另外,我假设你在使用IronPython。否则,表达该字符串格式的标准方式是:
"Current working directory is %s" % os.getcwd()
"Titles path is %s, exists? %s" % (movie_titles_path, os.path.exists(movie_titles_path))
(对不起,这只是对问题解答中途的答案。我对完整的解决方案感到困惑。)