OS X Finder:“純文字文件”已更改為“文字”,“富文本文件”更改為“富文本 (RTF)”等

OS X Finder:“純文字文件”已更改為“文字”,“富文本文件”更改為“富文本 (RTF)”等

最近,某些文件類型名稱發生了變化 - 不是文件關聯或預設應用程序,而是文件類型本身的名稱。 “純文字文件”已變更為“文字”,“富文本文件”已變更為“富文本 (RTF)”等,如下所示:

在此輸入影像描述

我做了一個find /Applications -name \*.plist -type f -print0 | xargs -0 grep "rich text (RTF)"並得到了點擊:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/CoreServices/MobileCoreTypes.bundle/Info.plist

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CFNetwork.framework/CFNetworkCoreTypes-Info.plist

它確實列出了一整套小寫檔案類型名稱以及有問題的檔案類型名稱。

sudo find /Library -name \*.plist -type f -print0 | xargs -0 grep "rich text (RTF)"發現(以及一堆「權限被拒絕」):

/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 7.1.simruntime/Contents/Resources/RuntimeRoot/System/Library/CoreServices/MobileCoreTypes.bundle/Info.plist

/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 7.1.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CFNetwork.framework/CFNetworkCoreTypes-Info.plist

無論如何,還有其他人看到這個嗎?和/或看看如何修復/恢復它?當然,它幾乎完全是美學的。但如果美觀對我來說不重要,我就不會使用 Mac。

相關內容