---
title: "createSymbolicLink(at:withDestinationURL:)"
framework: foundation
role: symbol
role_heading: Instance Method
path: "foundation/filemanager/createsymboliclink(at:withdestinationurl:)"
---

# createSymbolicLink(at:withDestinationURL:)

Creates a symbolic link at the specified URL that points to an item at the given URL.

## Declaration

```swift
func createSymbolicLink(at url: URL, withDestinationURL destURL: URL) throws
```

## Parameters

- `url`: The file URL at which to create the new symbolic link. The last path component of the URL issued as the name of the link.
- `destURL`: The file URL that contains the item to be pointed to by the link. In other words, this is the destination of the link.

## Discussion

Discussion This method does not traverse symbolic links contained in destURL, making it possible to create symbolic links to locations that do not yet exist. Also, if the final path component in url is a symbolic link, that link is not followed. note: In Swift, this method returns Void and is marked with the throws keyword to indicate that it throws an error in cases of failure. You call this method in a try expression and handle any errors in the catch clauses of a do statement, as described in Error Handling in The Swift Programming Language and About Imported Cocoa Error Parameters.

## See Also

### Creating symbolic and hard links

- [createSymbolicLink(atPath:withDestinationPath:)](foundation/filemanager/createsymboliclink(atpath:withdestinationpath:).md)
- [linkItem(at:to:)](foundation/filemanager/linkitem(at:to:).md)
- [linkItem(atPath:toPath:)](foundation/filemanager/linkitem(atpath:topath:).md)
- [destinationOfSymbolicLink(atPath:)](foundation/filemanager/destinationofsymboliclink(atpath:).md)
