Hi Alex,
the aliases files created by Mac are not currently supported by our Java stack. In order to explain why, I created an alias of a screenshot on my Desktop and then tested the files from the command-line:
- Code: Select all
$ file screenshot.png
screenshot.png: PNG image data, 647 x 254, 8-bit/color RGBA, non-interlaced
$ file screenshot\ alias
screenshot alias: data
In comparison, if I create a symlink of the file, this happens:
- Code: Select all
$ ln -s screenshot.png screenshot.link
$ file screenshot.link
screenshot.link: PNG image data, 647 x 254, 8-bit/color RGBA, non-interlaced
i.e. most tools will simply detect the fact that a symlink points to an image, whereas Mac aliases require more native information from the Mac OS.
Cheers,
~Josh.