<!--
{
  "availability" : [
    "iOS: 2.0.0 -",
    "iPadOS: 2.0.0 -",
    "macCatalyst: 13.0.0 -",
    "macOS: 10.0.0 -",
    "tvOS: 9.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Foundation",
  "identifier" : "/documentation/Foundation/NSString/stringWithContentsOfFile:usedEncoding:error:",
  "metadataVersion" : "0.1.0",
  "role" : "Type Method",
  "symbol" : {
    "kind" : "Type Method",
    "modules" : [
      "Foundation"
    ],
    "preciseIdentifier" : "c:objc(cs)NSString(cm)stringWithContentsOfFile:usedEncoding:error:"
  },
  "title" : "stringWithContentsOfFile:usedEncoding:error:"
}
-->

# stringWithContentsOfFile:usedEncoding:error:

Returns a string created by reading data from the file at a given path and returns by reference the encoding used to interpret the file.

```
+ (instancetype) stringWithContentsOfFile:(NSString *) path usedEncoding:(NSStringEncoding *) enc error:(NSError **) error;
```

## Parameters

`path`

A path to a file.

`enc`

Upon return, if the file is read successfully, contains the encoding used to interpret the file at `path`. For possible values, see [`NSStringEncoding`](/documentation/Foundation/NSStringEncoding).

`error`

If an error occurs, upon returns contains an `NSError` object that describes the problem. If you are not interested in possible errors, you may pass in `NULL`.

## Return Value

A string created by reading data from the file named by `path`. If the file can’t be opened or there is an encoding error, returns `nil`.

## Discussion

This method attempts to determine the encoding of the file at `path`.

---

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)