我有一个程序,要求用户输入包含n个.txt文件(文本)的目录。我想打开并读取用户输入的该目录的所有文本文件,然后,将所有文本依次仅放在一个文件中……下面的代码会在下面显示错误消息,这不会使感觉是因为文件“ Chapter22.txt”位于文件夹中。谁能帮助您了解发生了什么事?
Traceback (most recent call last):
File "/Users/nataliaresende/Dropbox/PYTHON/join_files.py", line 27,
in <module>
join_texts()
File "/Users/nataliaresende/Dropbox/PYTHON/join_files.py", line 13,
in join_texts
with open(file) as b:
FileNotFoundError: [Errno 2] No such file or directory: 'Chapter22.txt'
我试图循环进入输入的目录,打开并读取每个文件并将它们附加到列表中。之后,使用“”。 join方法将附加到列表的文本转换为字符串。有没有更简单的方法可以做到这一点?
import sys
import os
from pathlib import Path
def join_texts():
files_list=[]
files_directory = Path(input('Enter the path of the files: '))
for file in os.listdir(files_directory):
with open(file) as b:
f=b.read()
files_list.append(f)
joined_files=' '.join(files_list)
print(joined_files)
join_texts()
预期结果将是一个文件,其中包含该目录中的所有文本。有人可以帮我吗?