-1

I can see hidden files, but cannot see superhidden.

David Heffernan
  • 601,492
  • 42
  • 1,072
  • 1,490

2 Answers2

4

This is not a Delphi setting or an OpenDialog setting. It's a Windows shell setting that the user can configure for herself, and you certainly shouldn't go messing with it.

If you want to change it on your own machine so that these files are visible, you can follow these steps:

  1. Open Control Panel.

  2. Open the Folder Options control panel.

  3. Switch to the "View" tab.

  4. Clear the check box labeled "Hide protected operating system files (Recommended)".

  5. Click OK.

Community
  • 1
  • 1
Cody Gray - on strike
  • 239,200
  • 50
  • 490
  • 574
1

There's an excellent answer to this question at Raymond Chen's blog: When people ask for security holes as features: Hiding files from Explorer.

Greg Hewgill
  • 951,095
  • 183
  • 1,149
  • 1,285
  • 1
    Raymond's article discusses a slightly different issue. It explains why there is no file attribute to make a file hidden irrespective of user preferences. – David Heffernan Jan 24 '12 at 08:04