gpt4 book ai didi

swift - 'fileExists' 产生 'Bool' ,而不是预期的上下文结果类型 'Bool'

转载 作者:搜寻专家 更新时间:2023-10-31 22:40:09 24 4
gpt4 key购买 nike

这行代码:

if !FileManager.fileExists(atPath: documentDirectory.appendingPathComponent("newname.pdf"))

出现错误提示

'fileExists' produces 'Bool', not the expected contextual result type 'Bool'

在 Xcode 9.2 上。我错过了什么?

最佳答案

您需要在 FileManager 的实例上调用 fileExists。它不是类方法。

FileManager 提供在大多数情况下使用的默认实例。

if !FileManager.default.fileExists(atPath: documentDirectory.appendingPathComponent("newname.pdf"))

关于swift - 'fileExists' 产生 'Bool' ,而不是预期的上下文结果类型 'Bool',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48470312/

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