gpt4 book ai didi

swift - 检查路径是否是 Swift2 中的目录?

转载 作者:IT王子 更新时间:2023-10-29 05:34:14 25 4
gpt4 key购买 nike

<分区>

If like 获得类似于 Bash 的 -d if 条件的功能。

我知道如何测试文件是否存在 file> file existatatat at ,如果文件不存在,则返回bool“true”,如果不存在,则返回“false”(假设path 是包含文件路径的字符串):

if NSFileManager.fileExistsAtPath(path) {
print("File exists")
} else {
print("File does not exist")
}

但是,我想检查路径中指定的路径是否是目录,类似于以下 bash 代码:

if [ -d "$path" ]; then
echo "$path is a directory"
elif [ -f "$path" ]; then
# this is effectively the same as fileExistsAtPath()
echo "$path is a file"
fi

这是否可能,如果可以,应该如何执行?

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