微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

NSFileManager fileExistsAtPath:isDirectory和swift

我试图理解如何使用函数fileExistsAtPath:isDirectory:with Swift但我完全失去了。

这是我的代码示例:

var b:CMutablePointer<ObjCBool>?

if (fileManager.fileExistsAtPath(fullPath,isDirectory:b! )){
    // how can I use the "b" variable?!
    fileManager.createDirectoryAtURL(dirURL,withIntermediateDirectories: false,attributes: nil,error: nil)
}

我不明白如何访问b MutablePointer的值。如果我想知道它是否设置为YES或NO?

第二个参数的类型是UnsafeMutablePointer< ObjCBool​​&gt ;,这意味着
你必须传递一个ObjCBool​​变量的地址。例:
var isDir : ObjCBool = false
if fileManager.fileExistsAtPath(fullPath,isDirectory:&isDir) {
    if isDir {
        // file exists and is a directory
    } else {
        // file exists and is not a directory
    }
} else {
    // file does not exist
}

更新Swift 3(Xcode 8.0):

let fileManager = FileManager.default
var isDir : ObjCBool = false
if fileManager.fileExists(atPath: fullPath,isDirectory:&isDir) {
    if isDir.boolValue {
        // file exists and is a directory
    } else {
        // file exists and is not a directory
    }
} else {
    // file does not exist
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐