IOS: copy a file in documents folder

前端 未结 3 1731
北海茫月
北海茫月 2020-11-27 15:00

In my project I have two file .txt (in Resources folder), how can I copy them inside documents folder?

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-27 15:51

    Swift 3

    code for file is exist or not, if not then copy.

    func CheckFileisExistOrNot(strPath:String) {
        let filemgr = FileManager.default
        if !filemgr.fileExists(atPath: strPath) {
            let resorcePath = Bundle.main.path(forResource: "\(Global.g_databaseName)", ofType: ".db")
            do {
                try filemgr.copyItem(atPath: resorcePath!, toPath: strPath)
            }catch{
                print("Error for file write")
            }
        }
    }
    

提交回复
热议问题