Answers:
您可以在Info.plist中向CFBundleDocumentTypes数组添加条目,但它会被更新覆盖。如果应用程序已签名,它也会破坏代码签名,而某些应用程序(如TextEdit和Chess)将在启动时崩溃。
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>txt</string>
</array>
</dict>
要注册更改,请运行/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -f /Applications/SomeApp.app/和killall Finder。
lsregister手动运行,只需触摸应用程序包(touch /Applications/SomeApp.app),然后在Finder中取消选择并重新选择应用程序。更新的mod日期将强制Finder重新检查Info.plist并自动重新注册应用程序。