我想读取其他XML文件,以便稍后进行解析。我的code在下面,但出现此错误:
IsADirectoryError:[Errno 21]是目录:'.ipynb_checkpoints'
这是我的代码:
from os import listdir
for file in listdir():
print(file)
xmlTree = parse(file)
elemList = []
如何解决此错误?
如果有人遇到我的错误,我会发布答案。
for filename in os.listdir(path):
if not filename.endswith('.xml'): continue
fullname = os.path.join(path, filename)
xmlTree = parse(filename)