Wednesday, April 13, 2011

Problem in SpotLight, not searching for mp3 file in all directories in COCOA

Hi,

I have to search mp3 files in all directories. I implement using Spotlight concept, but it searches only in /user/userAccount/Music/Itunes Music. I have stored my songs on Desktop/Songs/*.mp3 and it doesn't search in this directory.

What should i do that my apps will search in all directories.

Thanks. Haresh.

From stackoverflow
  • If Spotlight is not a requirement for you, you can use unix command find. An example command line is:

    find ~ -name '*.mp3'
    

    provided that all your mp3 files have .mp3 extention.

    From a Cocoa app, you have to wrap it in a NSTask or use a popen() call.

  • Hi Friend,

       Thanks for giving answer. I have implemented using SpotLight and now its working fine.
    

0 comments:

Post a Comment