私は、それぞれのパックを購入したときにゲームの12レベルのコンテンツをダウンロードするアプリ内購入でアプリをセットアップしようとしています。iOSのキャッシュからApp App Purchaseのダウンロードファイルを正しく移動するには?
ダウンロードしたイメージをキャッシュフォルダからドキュメントフォルダに適切に移動する方法について説明しました。ここに私のコードは、これまでのところです:
func processDownload(sender: NSURL) {
//Convert URL to String, suitable for NSFileManager
var path:String = sender.path!
path = path.stringByAppendingPathComponent("Contents")
//Makes an NSArray with all of the downloaded files
let fileManager = NSFileManager.defaultManager()
var files: NSArray!
do {
files = try fileManager.contentsOfDirectoryAtPath(path)
} catch let err as NSError {
print("Error finding zip URL", err.localizedDescription)
}
//For each file, move it to Library
for file in files {
let pathSource: String = path.stringByAppendingPathComponent(file as! String)
let pathDestination: String = NSSearchPathForDirectoriesInDomains(.LibraryDirectory, .UserDomainMask, true)[0]
//Remove destination files b/c not allowed to overwrite
do {
try fileManager.removeItemAtPath(pathDestination)
}catch let err as NSError {
print("Could not remove file", err.localizedDescription)
}
//Move file
do {
try fileManager.moveItemAtPath(pathSource, toPath: pathDestination)
print("File", file, "Moved")
}catch let err as NSError {
print("Couldn't move file", err.localizedDescription)
}
}
}
すべてが、実際に2つのdo
文から印刷されたエラーを除くだけで正常に動作します。最初do
ブロックに同じ名前の既存のファイルを削除しようとすると、私は次のエラーを取得する:
Could not remove file “Library” couldn’t be removed because you don’t have permission to access it.
これは、その後、元を削除することができませんでしたので、印刷するには、次do文から次のエラーが発生します。
なぜこれが起こっているのか、ダウンロードしたファイルをどこに保存するのかについてのアイデアはありますか?ありがとう。
エラーは、このあなたはおそらく、許可されていないコースの「ライブラリ」フォルダを!、削除しようとしている、と言いますそこにサブフォルダを削除したいですか?あなたは確認できますか? – Shripada
ああ、私は今それを見る。私は現在の "ファイル"項目がすでに存在していたかどうかを確認しようとしていました。 – jwade502