gpt4 book ai didi

python - 打开不同目录python中的所有文件

转载 作者:太空狗 更新时间:2023-10-29 19:33:44 25 4
gpt4 key购买 nike

我需要在当前目录中打开不同目录中的文件而不使用它的路径。

当我执行下面的代码时:

for file in os.listdir(sub_dir):
f = open(file, "r")
lines = f.readlines()
for line in lines:
line.replace("dst=", ", ")
line.replace("proto=", ", ")
line.replace("dpt=", ", ")

我收到错误消息 FileNotFoundError: [Errno 2] No such file or directory: 因为它在子目录中。

问题:我可以使用 os 命令定位并打开 sub_dir 中的文件吗?

谢谢! -如果这是重复的,请告诉我,我搜索过但找不到,但可能错过了。

最佳答案

os.listdir() 列出没有路径的文件名。再次在 sub_dir 前面加上这些:

for filename in os.listdir(sub_dir):
f = open(os.path.join(sub_dir, filename), "r")

如果您所做的只是遍历文件中的行,则只需遍历文件本身即可;使用 with 确保文件在完成后也为您关闭。最后但同样重要的是,str.replace() 返回 新的字符串值,而不是更改值本身,因此您需要存储该返回值:

for filename in os.listdir(sub_dir):
with open(os.path.join(sub_dir, filename), "r") as f:
for line in f:
line = line.replace("dst=", ", ")
line = line.replace("proto=", ", ")
line = line.replace("dpt=", ", ")

关于python - 打开不同目录python中的所有文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18389946/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com