我正在尝试将我的基于 WinJS 的应用程序与我的package.appxmanifest
文件中的无扩展名文件相关联。我已成功关联*.txt
文件:
<Extensions>
<Extension Category="windows.fileTypeAssociation">
<FileTypeAssociation Name="my-app-name">
<SupportedFileTypes>
<FileType>.txt</FileType>
</SupportedFileTypes>
</FileTypeAssociation>
</Extension>
</Extensions>
但我找不到一种方法来关联没有扩展名的文件。我试过添加
<FileType>.</FileType>
无济于事。我还可以做些什么?