gpt4 book ai didi

python - 文件夹存在时 os.path.isdir 返回 false?

转载 作者:太空宇宙 更新时间:2023-11-03 12:48:02 26 4
gpt4 key购买 nike

我有以下代码检查目录是否存在

def download(id, name, bar):
cwd = os.getcwd()
dir = os.path.join(cwd,bar)
partial = os.path.join(cwd, id + ".partial")
print os.path.isdir(dir)
if(os.path.isdir(dir)):
print "dir exists"
dir_match_file(dir, bar)
else:
print dir

对于实际存在的目录,它返回“False”。这是输出:

False
/scratch/rists/djiao/Pancancer/RNA-seq/CESC/TCGA-BI-A0VS-01A-11R-A10U-07

当我进入 python 交互 session 并输入 os.path.isdir("/scratch/rists/djiao/Pancancer/RNA-seq/CESC/TCGA-BI-A0VS-01A-11R-A10U-07") ,它返回“真”。

为什么文件夹存在时提示false?

最佳答案

download 中的 dir 末尾有空格,而交互式 session 中定义的 dir 则没有。通过打印 repr(dir) 发现了差异。

In [3]: os.path.isdir('/tmp')
Out[3]: True

In [4]: os.path.isdir('/tmp\n')
Out[4]: False

关于python - 文件夹存在时 os.path.isdir 返回 false?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24964751/

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