Last active
August 29, 2015 14:02
-
-
Save tonyarnold/6dc39048743d2eb4ee16 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Copyright (c) 2014 Tony Arnold & The CocoaBots. All rights reserved. | |
import Foundation | |
extension NSFileManager | |
{ | |
func applicationSupportDirectoryURL() -> NSURL? | |
{ | |
let directories = URLsForDirectory( | |
NSSearchPathDirectory.ApplicationSupportDirectory, | |
inDomains: NSSearchPathDomainMask.UserDomainMask) | |
if let directoryURL = directories[directories.endIndex - 1] as? NSURL | |
{ | |
return directoryURL | |
} | |
return nil | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Copyright (c) 2014 Tony Arnold & The CocoaBots. All rights reserved. | |
import XCTest | |
import SwiftlyCoreData | |
class NSFileManagerAdditions: XCTestCase | |
{ | |
func testApplicationSupportDirectoryURLWorks() | |
{ | |
let appSupport = NSFileManager.applicationSupportDirectoryURL() | |
XCTAssertNotNil(appSupport, message: "Should not be nil") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Damn that's weird indeed @tonyarnold !