---
title: "setDefaultApplication(at:toOpen:completion:)"
framework: appkit
role: symbol
role_heading: Instance Method
path: "appkit/nsworkspace/setdefaultapplication(at:toopen:completion:)"
---

# setDefaultApplication(at:toOpen:completion:)

Sets the default app to use when opening files of a specific content type.

## Declaration

```swift
func setDefaultApplication(at applicationURL: URL, toOpen contentType: UTType, completion completionHandler: (@Sendable ((any Error)?) -> Void)? = nil)
```

```swift
func setDefaultApplication(at applicationURL: URL, toOpen contentType: UTType) async throws
```

## Parameters

- `applicationURL`: The URL of the default application.
- `contentType`: The content type to open.
- `completionHandler`: The completion handler to call after the operation completes.

## Discussion

Discussion This method sets the default app to open for files of the specified contentType. If a change requires user consent, the system asks the user for consent asynchronously before invoking the completion handler.

## See Also

### Setting Default Application Information

- [setDefaultApplication(at:toOpenFileAt:completion:)](appkit/nsworkspace/setdefaultapplication(at:toopenfileat:completion:).md)
- [setDefaultApplication(at:toOpenContentTypeOfFileAt:completion:)](appkit/nsworkspace/setdefaultapplication(at:toopencontenttypeoffileat:completion:).md)
- [setDefaultApplication(at:toOpenURLsWithScheme:completion:)](appkit/nsworkspace/setdefaultapplication(at:toopenurlswithscheme:completion:).md)
