Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须在所有目录中搜索 mp3 文件。我使用 Spotlight 实现它,但它仅在 /user/userAccount/Music/Itunes Music 中搜索。我已将我的歌曲存储在 Desktop/Songs/*.mp3 上,但它不在此目录中搜索。
我应该怎么做才能让我的应用程序在所有目录中搜索。
如果您不需要 Spotlight,您可以使用 unix command find。一个示例命令行是:
find
find ~ -name '*.mp3'
前提是您所有的 mp3 文件都有.mp3扩展名。
.mp3
在 Cocoa 应用程序中,您必须将其包装在 aNSTask或使用popen()调用中。
NSTask
popen()