La recherche de la barre latérale du Finder pour "Récents" (dans High Sierra) est une requête brute, qui peut être trouvée ici : /System/Library/CoreServices/Finder.app/Contents/Resources/MyLibraries/myDocuments.cannedSearch/Resources/search.savedSearch
.
La chaîne de requête est la suivante :
(kMDItemLastUsedDate = "*") && ((kMDItemContentTypeTree = public.content) || (kMDItemContentTypeTree = "com.microsoft.*"cdw) || (kMDItemContentTypeTree = public.archive))
Cette recherche porte également sur les produits Microsoft. La partie pertinente de la requête est :kMDItemContentTypeTree = "com.microsoft.*"cdw
A quoi sert la partie "cdw" de cette requête ? Et à quoi correspond-elle ?
J'ai trouvé une autre mention ici pour mdfind
l'usage : https://gist.github.com/cwalston/7425465
! -interpret Force the provided query string to be interpreted as if the user
! had typed the string into the Spotlight menu.
! For example, the string "search" would produce the following
! query string:
! (* = search* cdw || kMDItemTextContent = search* cdw)