C# - Toggle hidden files system wide? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T15:10:17Z http://stackoverflow.com/feeds/question/1447258 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1447258/c-toggle-hidden-files-system-wide 0 C# - Toggle hidden files system wide? Nate Shoffner http://stackoverflow.com/users/141831 2009-09-18T23:55:09Z 2009-09-18T23:58:34Z <p>What would be the best way to be able to toggle hidden folder and files system wide? I would prefer to do it in C#. I know I would use the global keyboard hook but I am not sure how I would toggle folders/files to be hidden and then visible when the shortcut key is pressed. Any help is appreciated. Thanks.</p> http://stackoverflow.com/questions/1447258/c-toggle-hidden-files-system-wide/1447267#1447267 2 Answer by lod3n for C# - Toggle hidden files system wide? lod3n http://stackoverflow.com/users/159559 2009-09-18T23:58:34Z 2009-09-18T23:58:34Z <p>Unhide it with the registry:</p> <pre><code>User Key: [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ Advanced] Value Name: Hidden Data Type: REG_DWORD (DWORD Value) Value Data: (1 = show hidden, 2 = do not show) </code></pre> <p>Then send a SHChangeNotify event to the desktop.</p>