从Bundle复制文件时Swift FileManager错误

我正在尝试将我的App的Bundle中的文件复制到设备上,我收到一个奇怪的错误:无法将表达式’$T5’转换为’LogicValue’类型

评论了下面代码中导致问题的那一行.

这是一切:

// This function returns the path to the Documents folder:
func pathTodocsFolder() -> String {
    let pathTodocumentsFolder = NSSearchPathForDirectoriesInDomains(.DocumentDirectory,.UserDomainMask,true)[0] as String

    return pathTodocumentsFolder.stringByAppendingPathComponent("/moviesDataBase.sqlite")
}


override func viewDidLoad() {
    super.viewDidLoad()

    let theFileManager = NSFileManager.defaultManager()

    if theFileManager.fileExistsAtPath(pathTodocsFolder()) {
        println("File Found!")
        // And then open the DB File
    }
    else {
        // copy the file from the Bundle and write it to the Device:
        let pathToBundledDB = NSBundle.mainBundle().pathForResource("moviesDB",ofType: "sqlite")
        let pathToDevice = pathTodocsFolder()

        let error:NSError?

        // Here is where I get the error:
        if (theFileManager.copyItemAtPath(pathToBundledDB,toPath:pathToDevice,error:error)) {
            // success
        }
        else {
            // failure 
        }
    }
}

该应用程序甚至不会立即编译.这个问题似乎特别针对copyItemAtPath调用 – 它应该返回一个Bool.

我很欣赏任何见解.

这里有两个问题:

>如果您将错误变量指定为let,则它不可变,因此您无法获得错误值.>您应该发送指向错误变量的指针,而不是变量本身.因此,在您收到编译器错误的行中,它应该是& error而不是error.

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...