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.
精彩评论