gpt4 book ai didi

python - 如何在 Python 中获取所有直接子目录

转载 作者:IT老高 更新时间:2023-10-28 12:34:06 24 4
gpt4 key购买 nike

我正在尝试编写一个简单的 Python 脚本,它将 index.tpl 复制到所有子目录中的 index.html 中(有一些异常(exception))。

试图获取子目录列表让我陷入困境。

最佳答案

import os
def get_immediate_subdirectories(a_dir):
return [name for name in os.listdir(a_dir)
if os.path.isdir(os.path.join(a_dir, name))]

关于python - 如何在 Python 中获取所有直接子目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/800197/

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