gpt4 book ai didi

python - os.path.isdir() 无法识别隐藏目录

转载 作者:行者123 更新时间:2023-11-30 22:56:22 25 4
gpt4 key购买 nike

所以我在运行 os.path.isdir() 时注意到在我的根目录的子目录上,它返回 False对于任何隐藏/ protected 文件夹。这有什么原因吗,或者这是一个已知的错误?如果不行的话有什么办法可以解决吗?

作为引用,下面是我正在运行的代码:

import os
for path in os.listdir("/"):
print path, os.path.isdir(path)

编辑:这是上述代码的输出

.DocumentRevisions-V100 False
.file False
.fseventsd False
.Spotlight-V100 False
.Trashes False
.vol False
Applications True
bin False
cores False
dev False
Developer False
etc False
home False
installer.failurerequests False
Library True
net False
Network False
opt False
private False
sbin False
System False
tmp False
User Information False
Users False
usr False
var False
Volumes False

最佳答案

尝试将目录名称添加到路径的前面。

import os
for path in os.listdir("/"):
print path, os.path.isdir("/" + path)

关于python - os.path.isdir() 无法识别隐藏目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37046323/

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