简体   繁体   中英

Open “Folder Options” dialog programmatically

Exists any way to open "Folder Options" (In windows Explorer: Tools > Folder Options) dialog programmatically? If no, how to set "Show hidden files and folders"? Sorry for poor english.

This should work:

ProcessStartInfo psi = new ProcessStartInfo
   {
       FileName = "RUNDLL32.EXE",
       Arguments = "shell32.dll,Options_RunDLL 0"
   };
Process.Start(psi);

There is a quite extensive reference here: Dx21 RunDLL32 .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM