所以我在打开文件进行读取时遇到问题,所以我决定尝试一个 os.isfile 断言:
from Android_API_Parser import Android_API_Parser
import os.path
assert os.path.isfile("D:\Work\Python Workspace\Android_API_Parser\test.txt")
tester = Android_API_Parser()
tester.setFile("test.txt")
tester.parse()
它没有通过断言:
Traceback (most recent call last):
File "D:\Work\Python Workspace\Android_API_Parser\src\Android_API_Tester.py", line
9, in <module>
assert os.path.isfile("D:\Work\Python Workspace\Android_API_Parser\test.txt")
AssertionError
我已经打开了我要打开的文件的路径并将其粘贴在下面:
D:\Work\Python Workspace\Android_API_Parser\test.txt
关于为什么它甚至未能通过断言的任何想法?除非我真的很累,否则文件显然位于那里。我什至尝试使用“/”和“\”,即使包含转义字符。