gpt4 book ai didi

tcl - 如何检查目录是否为空?

转载 作者:行者123 更新时间:2023-12-04 14:44:30 27 4
gpt4 key购买 nike

我知道 expect 是 tcl-in-sheep-clothing,但即使我考虑到这一点进行 google,我还是一无所获。

有没有办法确定特定目录是否为空(或不为空,我可以使用否定)?

最佳答案

使用 glob,尝试在其中搜索模式 *

set dir "/home/dinesh/stack"
set file_list [glob -nocomplain "$dir/*"]
if {[llength $file_list] != 0} {
puts "$dir is not empty"
} else {
puts "$dir is empty"
}

关于tcl - 如何检查目录是否为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28991539/

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