write(toFile:atomically:)
Writes a property list representation of the contents of the dictionary to a given path.
Declaration
func write(toFile path: String, atomically useAuxiliaryFile: Bool) -> BoolParameters
- path:
The path at which to write the file.
If
pathcontains a tilde (~) character, you must expand it with Expandingtildeinpath before invoking this method. - useAuxiliaryFile:
A flag that specifies whether the file should be written atomically.
If
useAuxiliaryFileis True, the dictionary is written to an auxiliary file, and then the auxiliary file is renamed topath. IfuseAuxiliaryFileis False, the dictionary is written directly topath. The True option guarantees thatpath, if it exists at all, won’t be corrupted even if the system should crash during writing.
Return Value
Discussion
This method recursively validates that all the contained objects are property list objects (instances of NSData, NSDate, NSNumber, NSString, NSArray, or NSDictionary) before writing out the file, and returns false if all the objects are not property list objects, since the resultant file would not be a valid property list.
If the dictionary’s contents are all property list objects, the file written by this method can be used to initialize a new dictionary with the class method dictionaryWithContentsOfFile: or the instance method init(contentsOfFile:).
If you need greater control over the property list representation, use PropertyListSerialization instead.
For more information about property lists, see Property List Programming Guide.