我正在创建一个空中应用程序,当文件被放入应用程序图标时,它会显示文件的路径。在 Windows 中效果很好,但在 Mac 中,应用程序图标不接受任何要放在上面的文件。因此,为了进行测试,我使用应用程序描述符向应用程序注册了一个 .txt 文件
<!-- The name that the system displays for the registered file type. Required. -->
<name>myAIREditor.Text</name>
<!-- The extension to register. Required. -->
<extension>txt</extension>
<!-- The description of the file type. Optional. -->
<description>myAIREditor text description file</description>
<!-- The MIME content type. -->
<contentType>text/plain</contentType>
<!-- The icon to display for the file type. Optional. -->
<!-- <icon>
<image16x16></image16x16>
<image32x32></image32x32>
<image48x48></image48x48>
<image128x128></image128x128>
</icon> -->
</fileType>
唉,文本文件可以放在应用程序图标上并显示路径。现在我必须为所有 100 亿个文件类型执行此操作吗?
有没有办法让我的应用程序接受任何类型的文件,无论扩展名是什么?