<!--
{
  "availability" : [
    "iOS: 4.0.0 -",
    "iPadOS: 4.0.0 -",
    "macCatalyst: 13.1.0 -",
    "macOS: 10.6.0 -",
    "tvOS: 9.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Foundation",
  "identifier" : "/documentation/Foundation/NSURL/appendingPathComponent(_:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Foundation"
    ],
    "preciseIdentifier" : "c:objc(cs)NSURL(im)URLByAppendingPathComponent:"
  },
  "title" : "appendingPathComponent(_:)"
}
-->

# appendingPathComponent(_:)

Returns a new URL by appending a path component to the original URL.

```
func appendingPathComponent(_ pathComponent: String) -> URL?
```

## Parameters

`pathComponent`

The path component to add to the URL, in its original form (not URL encoded).

## Return Value

A new URL with `pathComponent` appended.

## Discussion

If the original URL does not end with a forward slash and `pathComponent` does not begin with a forward slash, a forward slash is inserted between the two parts of the returned URL, unless the original URL is the empty string.

If the receiver is a file URL and `pathComponent` does not end with a trailing slash, this method may read file metadata to determine whether the resulting path is a directory. This is done synchronously, and may have significant performance costs if the receiver is a location on a network mounted filesystem. You can instead call the [`appendingPathComponent(_:isDirectory:)`](/documentation/Foundation/NSURL/appendingPathComponent(_:isDirectory:)) method if you know whether the resulting path is a directory to avoid this file metadata operation.

---

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)