TKServer

Remove MacOSX .DS_Store Files

Remove MacOSX .DS_Store Files

Reference

The MacOS stores a hidden file in directories called .DS_Store.  This can cause problems when using the Mac to zip files for installation in Joomla.  Use the Linux command below to recursively remove .DS_Store from a directory:

find
. -name '*.DS_Store' -type f -delete
Written by Administrator