FileManager+AlamofireTests.swift 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. //
  2. // FileManager+AlamofireTests.swift
  3. //
  4. // Copyright (c) 2014-2016 Alamofire Software Foundation (http://alamofire.org/)
  5. //
  6. // Permission is hereby granted, free of charge, to any person obtaining a copy
  7. // of this software and associated documentation files (the "Software"), to deal
  8. // in the Software without restriction, including without limitation the rights
  9. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. // copies of the Software, and to permit persons to whom the Software is
  11. // furnished to do so, subject to the following conditions:
  12. //
  13. // The above copyright notice and this permission notice shall be included in
  14. // all copies or substantial portions of the Software.
  15. //
  16. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. // THE SOFTWARE.
  23. //
  24. import Foundation
  25. extension FileManager {
  26. // MARK: - Common Directories
  27. static var temporaryDirectoryPath: String {
  28. return NSTemporaryDirectory()
  29. }
  30. static var temporaryDirectoryURL: URL {
  31. return URL(fileURLWithPath: FileManager.temporaryDirectoryPath, isDirectory: true)
  32. }
  33. // MARK: - File System Modification
  34. @discardableResult
  35. static func createDirectory(atPath path: String) -> Bool {
  36. do {
  37. try FileManager.default.createDirectory(atPath: path, withIntermediateDirectories: true, attributes: nil)
  38. return true
  39. } catch {
  40. return false
  41. }
  42. }
  43. @discardableResult
  44. static func createDirectory(at url: URL) -> Bool {
  45. return createDirectory(atPath: url.path)
  46. }
  47. @discardableResult
  48. static func removeItem(atPath path: String) -> Bool {
  49. do {
  50. try FileManager.default.removeItem(atPath: path)
  51. return true
  52. } catch {
  53. return false
  54. }
  55. }
  56. @discardableResult
  57. static func removeItem(at url: URL) -> Bool {
  58. return removeItem(atPath: url.path)
  59. }
  60. @discardableResult
  61. static func removeAllItemsInsideDirectory(atPath path: String) -> Bool {
  62. let enumerator = FileManager.default.enumerator(atPath: path)
  63. var result = true
  64. while let fileName = enumerator?.nextObject() as? String {
  65. let success = removeItem(atPath: path + "/\(fileName)")
  66. if !success { result = false }
  67. }
  68. return result
  69. }
  70. @discardableResult
  71. static func removeAllItemsInsideDirectory(at url: URL) -> Bool {
  72. return removeAllItemsInsideDirectory(atPath: url.path)
  73. }
  74. }