Created
February 15, 2017 17:54
-
-
Save bennagar/1d9c4114f49a712ac0e4bfd178fdcf52 to your computer and use it in GitHub Desktop.
Save to document directory - so it can be read from iTunes
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
/** Add to plist | |
'UIFileSharingEnabled' = YES | |
'Bundle display name' = $(PRODUCT_NAME) | |
*/ | |
var filePath:URL? = { | |
return FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first?.appendingPathComponent("file.txt") | |
}() | |
"TEST".write(to: filePath, atomically: true, encoding: .UTF8) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment