Folder Options) dialog programmatically? If no, how to set \"Show hidden files and folders\"? Sorry for poor en" />
开发者

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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜