After like a half an our of digging, I\'ve found out I don\'t have permission to create folders, so how do I get permission to create a folder?
[[NSFileManag
Check the below Answer for SWIFT:
var paths = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] as String
[NSFileManager.defaultManager().createDirectoryAtPath(paths.stringByAppendingPathComponent("Hello"), withIntermediateDirectories: false, attributes: nil, error: nil)]
println(paths)