gpt4 book ai didi

python - IF 语句 : Shell to python

转载 作者:太空宇宙 更新时间:2023-11-04 09:33:35 25 4
gpt4 key购买 nike

让我们说

DIR2 = /tmp/test'
'dirName = stats

if [ -d /$DIR2/$dirName/* ]

以上是我的。它检查 /tmp/test/stats 目录是否包含其中的任何文件或目录。如果它确实包含某些内容,那么我将打印出 yes。

如何将其翻译成 python 语言?

if os.path.exists(DIR2 + "/" + dirName + ):
print "pass"

到目前为止我试过的是什么..

但我知道在 if 语句的末尾我还需要一个词。

最佳答案

我想最简单的方法是检查 os.listdir 返回的列表是否是非空的...

if os.listdir(os.path.join(DIR2, dirName)):
print("Not empty!")

关于python - IF 语句 : Shell to python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28967988/

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