Bizon wrote:steko wrote:Bizon wrote:With the exception of the OSX search function.
What's the problem?
Have you ever tried looking for a specific file like a bank of presets for a particular VST or even a sample? The only things it can find are items you have downloaded or things on your desktop.
To bypass spotlight and search for something you could try the following:
Open a 'Terminal'
su root ('cos root will have the necessary permissions)
1)
cd [drag the 'Library' folder icon onto the Terminal window to autofill the path to the Library folder or any folder you want to specifically search] --> e.g. should get cd /Library
hit return for a new command line
then enter:
find . -name "PRESET NAME" -print
e.g.
find . -name "*Pad*FXP" -print
--> this will output the paths of any fxp presets containing 'Pad' in the filename
2) or could use
find / -name "PRESET NAME" -print
e.g. find / -name "*Pad*FXP" -print
--> which would search the entire root folder disk