我有一个python脚本。我想打开一个文件来检索里面的数据。我将正确的路径添加到sys.path
:
sys.path.append('F:\WORK\SIMILITUDE\ALGOCODE')
sys.path.append('F:\WORK\SIMILITUDE\ALGOCODE\DTW')
更准确地说,file.txt
我将打开的文件在 DTW 文件夹中,并且我还添加了上层文件夹 ALGOCODE。然后,我有命令
inputASTM170512 = open("file.txt","r")
我有这个礼物:
Traceback (most recent call last):
File "<pyshell#24>", line 1, in <module>
inputASTM170512 = open("ASTM-170512.txt","r")
IOError: [Errno 2] No such file or directory: 'ASTM-170512.txt'
为什么?你有什么主意吗?