<!--
{
  "availability" : [
    "iOS: 2.0.0 - 27.0.0",
    "iPadOS: 2.0.0 - 27.0.0",
    "macCatalyst: 13.1.0 - 27.0.0",
    "macOS: 10.0.0 - 27.0.0",
    "tvOS: 9.0.0 - 27.0.0",
    "visionOS: 1.0.0 - 27.0.0",
    "watchOS: 2.0.0 - 27.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "Foundation",
  "identifier" : "/documentation/Foundation/NSDictionary/write(to:atomically:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Foundation"
    ],
    "preciseIdentifier" : "c:objc(cs)NSDictionary(im)writeToURL:atomically:"
  },
  "title" : "write(to:atomically:)"
}
-->

# write(to:atomically:)

Writes a property list representation of the contents of the dictionary to a given URL.

```
func write(to url: URL, atomically: Bool) -> Bool
```

## Parameters

`url`

The URL to which to write the dictionary.

`atomically`

A flag that specifies whether the output should be written atomically.

    If     `atomically`     is     <doc://com.apple.documentation/documentation/Swift/true>    , the dictionary is written to an auxiliary location, and then the auxiliary location is renamed to     `url`    . If     `atomically`     is     <doc://com.apple.documentation/documentation/Swift/false>    , the dictionary is written directly to     `url`    . The     <doc://com.apple.documentation/documentation/Swift/true>     option guarantees that     `url`    , if it exists at all, won’t be corrupted even if the system should crash during writing.     `atomically`     is ignored if     `url`     is of a type that cannot be written atomically.

## Return Value

<doc://com.apple.documentation/documentation/Swift/true> if the location is written successfully, otherwise <doc://com.apple.documentation/documentation/Swift/false>.

## 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 <doc://com.apple.documentation/documentation/Swift/false> if all the objects are not property list objects, since the resultant output would not be a valid property list.

If the dictionary’s contents are all property list objects, the location written by this method can be used to initialize a new dictionary with the class method `NSDictionary/init(contentsOfURL:)-98pl3` or the instance method `NSDictionary/init(contentsOfURL:)-4pv16`.

If you need greater control over the property list representation, use [`PropertyListSerialization`](/documentation/Foundation/PropertyListSerialization) instead.

For more information about property lists, see [Property List Programming Guide](https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/PropertyLists/Introduction/Introduction.html#//apple_ref/doc/uid/10000048i).

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)