no such file怎么解决python,Python无法打开文件“ No such file or directory”

def main():

fh = open('lines.txt')

for line in fh.readlines():

print(line)

if __name__ == "__main__": main()

Directory files

yNd7C.png

I am on for-working.py file, and am trying to access the lines.txt file within the same working directory. But I get error

No such file or directory: 'lines.txt'

Does python need to have an absolute path when opening files?

why doesn't this relative path work here?

Running python 3.6

EDIT ^1 I'm running visualstudio code with the python package extension by Don Jayamanne, and "Code Runner" package to compile/execute python code

EDIT ^2 Full error:

Traceback (most recent call last):

File "c:\www\Ex_Files_Python_3_EssT(1)\Ex_Files_Python_3_EssT\Exercise Files\07 Loops\for-working.py", line 11, in

if __name__ == "__main__": main()

File "c:\www\Ex_Files_Python_3_EssT(1)\Ex_Files_Python_3_EssT\Exercise Files\07 Loops\for-working.py", line 7, in main

fh = open('lines.txt', 'r')

FileNotFoundError: [Errno 2] No such file or directory: 'lines.txt'

EDIT ^3 checking sys.path

import sys

print(sys.path)

produces this information:

['c:\\www\\Ex_Files_Python_3_EssT(1)\\Ex_Files_Python_3_EssT\\Exercise Files\\07 Loops',

'C:\\Users\\Kagerjay\\AppData\\Local\\Programs\\Python\\Python36\\python36.zip', 'C:\\Users\\Kagerjay\\AppData\\Local\\Programs\\Python\\Python36\\DLLs', 'C:\\Users\\Kagerjay\\AppData\\Local\\Programs\\Python\\Python36\\lib', 'C:\\Users\\Kagerjay\\AppData\\Local\\Programs\\Python\\Python36', 'C:\\Users\\Kagerjay\\AppData\\Local\\Programs\\Python\\Python36\\lib\\site-packages']

EDIT ^4 checking os.getcwd()

Running

import os

print(os.getcwd())

Produces

c:\www\Ex_Files_Python_3_EssT(1)\Ex_Files_Python_3_EssT\Exercise Files

Well its definitely not in the right subdirectory (needs to cd 07 loops folder, that narrows the issue down

EDIT ^5 what is in lines.txt file

My lines.txt file i am opening looks like this. No extra whitespace or anything at start

01 This is a line of text

02 This is a line of text

03 This is a line of text

04 This is a line of text

05 This is a line of text

IN SUMMARY

Visual studio code's Code runner extension needs to be tweaked slightly to open files within a subdirectory so any of the below answers would provide a more robust solution to be independent of any extension / dependencies with the IDE

import os

print(os.getcwd())

Is most useful for diagnosing problem to the current directory python interpreter sees

解决方案

Get the directory of the file, and join it with the file you want to open:

def main():

dir_path = os.path.dirname(os.path.realpath(__file__))

lines = os.path.join(dir_path, "lines.txt")

fh = open(lines)

for line in fh.readlines():

print(line)

if __name__ == "__main__": main()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值