使用Python读取文件时获取IOError

时间:2017-07-19 07:44:19

标签: python

尝试使用Python读取文件内容时出现以下错误。

错误:

Exception Type: IOError
Exception Value:    
[Errno 2] No such file or directory: u'/opt/lampp/htdocs/Nuclear_reactor/d50/nuclear_vulnerable/2ceaebde4ca44cde963914c96b53c553.txt\r\n'

我正在解释下面的代码。

param = request.POST.get('param')#2ceaebde4ca44cde963914c96b53c553.txt
test_file = os.path.join(os.getcwd(), param)
 f = open(test_file, 'r')
f.read()
f.close()

此文件夹中存在.txt文件,但仍显示错误。在这里,我需要阅读该文件。

1 个答案:

答案 0 :(得分:2)

尝试从文件名末尾删除换行符\r\n,例如使用string.strip()