<!--
{
  "documentType" : "article",
  "framework" : "FileProvider",
  "identifier" : "/documentation/FileProvider/setting-the-finder-sidebar-icon",
  "metadataVersion" : "0.1.0",
  "role" : "article",
  "title" : "Setting the Finder Sidebar Icon"
}
-->

# Setting the Finder Sidebar Icon

Specify a standard or custom symbol as a sidebar icon.

## Discussion

To set the sidebar icon for your File Provider extension, set the <doc://com.apple.documentation/documentation/BundleResources/Information-Property-List/CFBundleIcons/CFBundlePrimaryIcon/CFBundleSymbolName> key in the File Provider extension’s `Info.plist` file. The key takes the name of one of the SF Symbols. For the complete list of available symbols, see [SF Symbols 3](https://developer.apple.com/sf-symbols/).

This image shows setting the sidebar icon to the `cloud.bolt.fill` symbol in the Plist editor.

![A screenshot of the File Provider extension’s Info.plist file. The Plist editor shows an Icon file (iOS 5) key that contains a Primary Icon key, which also contains the SF Symbol name key. ](images/com.apple.fileprovider/media-3908721@2x.png)

Alternatively, you can open the `Info.plist` file as source code and edit the XML directly.

```plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>CFBundleIcons</key>
    <dict>
        <key>CFBundlePrimaryIcon</key>
        <dict>
            <key>CFBundleSymbolName</key>
            <string>cloud.bolt.fill</string>
        </dict>
    </dict>
    <key>NSExtension</key>
    <dict>
        <key>NSExtensionFileProviderDocumentGroup</key>
        <string>group.com.examples.My-File-Provider-App</string>
        <key>NSExtensionFileProviderSupportsEnumeration</key>
        <true/>
        <key>NSExtensionPointIdentifier</key>
        <string>com.apple.fileprovider-nonui</string>
        <key>NSExtensionPrincipalClass</key>
        <string>$(PRODUCT_MODULE_NAME).FileProviderExtension</string>
    </dict>
</dict>
</plist>
```

To create a custom symbol for your app, see <doc://com.apple.documentation/documentation/UIKit/creating-custom-symbol-images-for-your-app>. To see a sample code project that uses a custom symbol, see [Synchronizing files using file provider extensions](/documentation/FileProvider/synchronizing-files-using-file-provider-extensions).

---

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)