File Associations
File Associations Windows macOS
Relevant Platforms: Windows macOS
File associations allow your application to handle specific file types when users open them. This is particularly useful for text editors, image viewers, or any application that works with specific file formats. This guide explains how to implement file associations in your Wails v3 application.
Overview
File association support in Wails v3 is currently available for:
- Windows (NSIS installer packages)
- macOS (application bundles)
Configuration
File associations are configured in the config.yml
file located in your
project’s build
directory.
Basic Configuration
To set up file associations:
- Open
build/config.yml
- Add your file associations under the
fileAssociations
section - Run
wails3 update build-assets
to update the build assets - Set the
FileAssociations
field in the application options - Package your application using
wails3 package
Here’s an example configuration:
Configuration Properties
Property | Description | Platform |
---|---|---|
ext | File extension without the leading period (e.g., txt ) | All |
name | Display name for the file type | All |
description | Description shown in file properties | Windows |
iconName | Name of the icon file (without extension) in the build folder | All |
role | Application’s role for this file type (e.g., Editor , Viewer ) | macOS |
Listening for File Open Events
To handle file open events in your application, you can listen for the
events.Common.ApplicationOpenedWithFile
event:
Step-by-Step Tutorial
Let’s walk through setting up file associations for a simple text editor:
-
Create Icons
- Create icons for your file type (recommended sizes: 16x16, 32x32, 48x48, 256x256)
- Save the icons in your project’s
build
folder - Name them according to your
iconName
configuration (e.g.,textFileIcon.png
)
-
Configure File Associations
Edit the
build/config.yml
file to add your file associations: -
Update Build Assets
Run the following command to update the build assets:
-
Set File Associations in the Application Options
In your
main.go
file, set theFileAssociations
field in the application options: -
Package Your Application
Package your application using the following command:
The packaged application will be created in the
bin
directory. You can then install and test the application.Additional Notes
- Icons should be provided in PNG format in the build folder
- Testing file associations requires installing the packaged application