2017-05-17 10 views
1

私はSSZipArchiveを使用してURLからファイルを解凍します(http://www.colorado.edu/conflict/peace/download/peace.zip)。このために、私は、関数を使用しています:SSZipArchiveがURLから解凍する

SSZipArchive.unzipFile(atPath: path, toDestination: documentsPath, progressHandler: { 
  1. はそれがSSZipArchiveを使用してURLからファイルを抽出することは可能ですか?
  2. はい、URLをに渡すにはパス
+0

いいえこれを行う方法。ローカルファイルのみを抽出する – ajjjjjjjj

答えて

0

URLからファイルをダウンロードせずに直接解凍することはできません。あなたがしたい場所これは私がこれを行う方法です

func downLoad() { 
    let url : String = "http://www.colorado.edu/conflict/peace/download/peace.zip" 
    var localPath: NSURL? 
    Alamofire.download(.GET,url, 
     destination: { (temporaryURL, response) in 
      let directoryURL = NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)[0] 
      let pathComponent = response.suggestedFilename 
      localPath = directoryURL.URLByAppendingPathComponent(pathComponent!) 
      return localPath! 
    }) 
     .response { (request, response, _, error) in 
      SwiftEventBus.post("DownloadedSuccessfully", sender: localPath!) 
    } 
} 

コンテンツをダウンロードした後、解凍します。

SwiftEventBus.onMainThread(self, name:"DownloadedSuccessfully") 
    { 
     result in 

     let resultStatus = result.object as! NSURL 

     guard let zipPath: String = resultStatus.path! as String else { 
      return 
     } 
     guard let unZipPath = unzipPath() else { 
      return 
     } 

     let success = SSZipArchive.unzipFileAtPath(zipPath, toDestination: unZipPath) 
     print(unZipPath) 
     if !success { 
      return 
     } 
    } 

私は、ファイルのデータにアクセスすることができ、そこから

func unzipPath() -> String? { 
    let path = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] 
    let url = NSURL(fileURLWithPath: path) 
    do { 
     try NSFileManager.defaultManager().createDirectoryAtURL(url, withIntermediateDirectories: true, attributes: nil) 
    } catch { 
     return nil 
    } 
    if let path = url.path { 
     return path 
    } 
    return nil 
} 

をファイルを解凍して、ドキュメントディレクトリに格納されています。ここでは、サードパーティのフレームワークAlamofireとswiftEventBusを使用しました。これはあなたのために働くことを望みます。

関連する問題