C# - Toggle hidden files system wide? - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T15:10:17Zhttp://stackoverflow.com/feeds/question/1447258http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1447258/c-toggle-hidden-files-system-wide0C# - Toggle hidden files system wide?Nate Shoffnerhttp://stackoverflow.com/users/1418312009-09-18T23:55:09Z2009-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#14472672Answer by lod3n for C# - Toggle hidden files system wide?lod3nhttp://stackoverflow.com/users/1595592009-09-18T23:58:34Z2009-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>