I can see hidden files, but cannot see superhidden.
Asked
Active
Viewed 376 times
-1
-
This has absolutely nothing to do with Delphi. – Andreas Rejbrand Jan 24 '12 at 07:40
2 Answers
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:
Open Control Panel.
Open the Folder Options control panel.
Switch to the "View" tab.
Clear the check box labeled "Hide protected operating system files (Recommended)".
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
-
1Raymond'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