0

By default, the ColdFusion built in Server shows .DS_Store files on MacOS. Is there a setting to hide these?

enter image description here

James A Mohler
  • 243
  • 4
  • 19
  • The directory listing is not so much a part of ColdFusion as Tomcat. Have you tried [specifying a security constraint (tomcat 7, thus javaee6)](https://docs.oracle.com/cd/E19798-01/821-1841/bncbk/index.html) for `*/.DS_store` in web.xml? – Andrew Domaszek Nov 27 '14 at 20:09

1 Answers1

1

DS_Store files are automatically created by Mac OSX Finder in browsed directories. These files contain information about system configuration. Read here.

Here is how you can remove it

  1. Select Applications > Utilities to launch Terminal.
  2. Enter the following UNIX command: sudo find / -name ".DS_Store" -depth -exec rm {} \;
  3. When prompted for a password enter your Mac OS X Administrator password.
Anit Kumar
  • 368
  • 1
  • 10