H5Manager.swift 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // H5Manager.swift
  3. // CommonFrame
  4. //
  5. // Created by Virgil on 2018/5/22.
  6. // Copyright © 2018年 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. let h5_path = "webhtml"
  10. class H5Manager: NSObject {
  11. ///检查h5文件是否可用 是否复制到沙盒底下
  12. class func checkIsUse() -> Bool {
  13. //获取应用程序的路径
  14. let searchPaths = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)
  15. let documentFolderPath = searchPaths[0]
  16. let dbFilePath = documentFolderPath + "/\(h5_path)/manifest.json"
  17. let fm = FileManager.default
  18. let isExist = fm.fileExists(atPath: dbFilePath)
  19. /**
  20. * 如果不存在 拷贝工程里的数据库到 documents下 ZIP文件压缩时不能带外层文件夹
  21. */
  22. if isExist {
  23. try! fm.removeItem(atPath: documentFolderPath + "/\(h5_path)")
  24. print("===delele==\(documentFolderPath + "/\(h5_path)")====success")
  25. } else {
  26. }
  27. try! fm.createDirectory(atPath: documentFolderPath + "/\(h5_path)", withIntermediateDirectories: true, attributes: nil)
  28. let backupDbPath = Bundle.main.path(forResource: h5_path, ofType: "zip")
  29. SSZipArchive.unzipFile(atPath: backupDbPath!, toDestination: documentFolderPath + "/\(h5_path)")
  30. print("==H5 0k==")
  31. return true
  32. }
  33. }