Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种方法可以找到给定目录中的所有目录?我正在尝试以下内容,这给了我一个空列表:
[item for item in os.listdir(dir) if os.path.isdir(item)]
os.listdir(dir)返回相对于 的名称dir,您必须执行以下操作:
os.listdir(dir)
dir
[item for item in os.listdir(dir) if os.path.isdir(os.path.join(dir, item))]
您忘记使用os.path.join()将目录加入条目。
os.path.join()
[item[0] for item in os.walk(dir)]