Finder Search – Fix Alias Not Finding Files

aliasfindersearch

I am running Yosemite on a Mac Pro Mid 2010.

When I moved to an SSD for my boot drive, I started using Symbolic Linking so some apps would store their data on a regular HD. So, for example, I go to my library folder and in Application support there's an Evernote alias. It works flawlessly, and I've done this for many apps that don't offer an easy way to store data elsewhere.

Now, my data drive is approaching its limit, and I have a larger drive coming. I'd like to be able to redirect the links to the new drive, and tried searching for "kind is alias" but that doesn't show the links. The Evernote alias doesn't get found in a search, nor do any others I know I've set up.

TL;DR – How do I perform a search to show me Alias files I've created? A normal search, even for alias files I've just created, don't show up in a search.

Best Answer

Did you use the Alias command from the finder when you created the links, or did you use ln -s in the terminal? Unix symbolic links are not quite the same as an Alias although they serve similar purposes. From the name of the service you installed, it's probably a good assumption they were using Unix symbolic links.

In that case, you'll probably want to use the find command in the terminal, e.g.: find /Users/yourhome/Library/ -type l

Assuming that this was the service you installed, it looks like they're calling symlink from the standard C libraries, which in turn is going to use Unix symlinks, and not Mac OS aliases.